PHP code example of datasift / ifconfig-parser
1. Go to this page and download the library: Download datasift/ifconfig-parser library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
datasift / ifconfig-parser example snippets
$ifconfig = new Datasift\IfconfigParser\Parser\Ubuntu;
$ifconfigOutput = 'eth0 Link encap:Ethernet HWaddr 12:34:56:78:01:23
inet addr:192.168.1.22 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: ab12::22a2:4ac:feef:e57/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2378273 errors:0 dropped:0 overruns:0 frame:0
TX packets:1613739 errors:0 dropped:0 overruns:0 carrier:1
collisions:0 txqueuelen:1000
RX bytes:1810673072 (1.8 GB) TX bytes:385161856 (385.1 MB)
eth1 Link encap:Ethernet HWaddr 50:e5:49:ef:0e:5b
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:20 Memory:f6500000-f6520000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:504894 errors:0 dropped:0 overruns:0 frame:0
TX packets:504894 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:34293133 (34.2 MB) TX bytes:34293133 (34.2 MB)';
// IP address of connected adapters
var_dump($ifconfig->parse($ifconfigOutput));
bash
git clone git://github.com/datasift/ifconfig-parser-php.git
composer install