jovixv/native-ping

Native ping command without any dependencies. Through ICMP protocol.

v1.0.3 2021-11-11 13:22 UTC

This package is auto-updated.

Last update: 2024-04-11 19:07:45 UTC


README

Native ping command without any dependencies. Through ICMP protocol. Writed on PHP.

install

This package working only with composer 2+ Read more about our Composer 1.x deprecation policy.

composer require jovixv/native-ping

Usage Example

include '../vendor/autoload.php';

use jovixv\Ping\Ping;

$test = new Ping();

$pingEntity = $test->ping('dataforseo.com', 500, 4, 32);

var_dump($pingEntity);