Details
iana-enterprise-numbers-fetcher
Fetch the PEN List from IANA and optionally search in it.
Example
header('Content-Type: text/plain');
$Fetcher = new IanaPenListFetcher();
$result = $Fetcher();
echo print_r(count($result), true). " Records found\n";
//This should search and find the SAME entry (by email, id, oid, name, org):
echo print_r($Fetcher('till@webfan.de'), true). "\n";
echo print_r($Fetcher(37553), true). "\n";
echo print_r($Fetcher('1.3.6.1.4.1.37553'), true). "\n";
echo print_r($Fetcher('Wehowski'), true). "\n";
echo print_r($Fetcher('frdl'), true). "\n";
Optionally with custom configuration:
$Fetcher->setRoot('1.3.6.1.4.1');
$Fetcher->setUrl('https://www.iana.org/assignments/enterprise-numbers/enterprise-numbers');
$Fetcher->setCachelimit(60 * 60);
$Fetcher->setCachefile(__DIR__.\DIRECTORY_SEPARATOR.'penlist.php');
January 2023
Nominee
Vote |
The Internet Assigned Numbers Authority (IANA) is responsible for assigning the main numbers used to connect to networks all over the Internet.
One of the types of numbers that it assigns is the numbers of the companies responsible for networks connecting many nodes on the Internet.
This package can retrieve the complete list of companies IANA lists, so PHP developers can search that list for numbers and names of companies responsible for all the Internet network nodes made available in the IANA Enterprise numbers list.
Manuel Lemos |
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.
|
Files |
|
|
Files |
|