أولا نقوم بتسجيل على حساب مجاني على عزيزى العضو \ الزائر لايمكنك مشاهده الروابط الا بعد الرد ، للحصول على رمز وصول عزيزى العضو \ الزائر لايمكنك مشاهده الروابط الا بعد الرد المجاني .
ثانيا قم بتحميل عزيزى العضو \ الزائر لايمكنك مشاهده الروابط الا بعد الرد
تنصيب عن طريق composer
رمز Code:
composer require ipfinder/ipfinder
ثم افعل:
رمز Code:
<?php require 'vendor/autoload.php';
تنصيب يدويا حمل عزيزى العضو \ الزائر لايمكنك مشاهده الروابط الا بعد الرد
ووضعها في مكان ما في مشروعك. ثم افعل:
رمز Code:
<?php require_once __DIR__.'autoloader.php'; كيفية إستعمال ipfinder PHP Client Library
رمز Code:
<?php use ipfinder\ipfinder\IPfinder; // Token $client = new IPfinder('YOUR_TOKEN_GOES_HERE'); // GET Get details for 1.0.0.0 $ip_address = '1.0.0.0'; // lookup IP address information $details = $client->getAddressInfo($ip_address); var_dump($details);
إحضار معلومات رقم ASN
رمز Code:
<?php require 'vendor/autoload.php'; use ipfinder\ipfinder\IPfinder; // Token $client = new IPfinder('ent'); // YOUR_TOKEN_GOES_HERE $asn = 'as36947'; // as36947 // lookup Asn information $details = $client->getAsn($asn); var_dump($details); // get and print continent name echo $details->continent_name."\n"; // get and print speed echo $details->speed['ping']."\n";
الحصول على Token الخاص بك
رمز Code:
require 'vendor/autoload.php'; use ipfinder\ipfinder\IPfinder; // Token $client = new IPfinder('ent'); // YOUR_TOKEN_GOES_HERE // lookup IP address information $details = $client->getStatus(); var_dump($details); // get and print Number of IP address queries left for the day echo $details->queriesLeft."\n";