nelisys/ping

PHP类,用于fping命令

1.0.0 2015-10-24 13:49 UTC

This package is auto-updated.

Last update: 2024-09-11 22:19:44 UTC


README

PHP类,用于fping命令

需求

需求: fping

适用于RedHat/CentOS 6, 7

[root@centos ~]# yum install epel-release
[root@centos ~]# yum install fping

使用Composer安装

$ composer require nelisys/ping

使用方法

示例php文件。

// test-ping.php
require 'vendor/autoload.php';

use Nelisys\Ping;

$host = new Ping('127.0.0.1');

var_dump($host->ping());

运行测试php文件。

$ php test-ping.php
Array
(
    [127.0.0.1] => 0.14
)