所以,我有一个名为 $modSites 的简单数组,它只是一个需要 ping 的 url 列表。
我遍历数组:
## Get array length ##
$modLength = count($modSites);
## For loop, until end of array is reached ##
for ( $i = 0; $i < $modLength; x++ );
但现在,我想使用一个 php 类:https ://github.com/geerlingguy/Ping来 ping 每个 URL,并将结果打印在表格中。将数组中的值填充到我可以在下面的代码片段中分配给 $host 的变量中的最有效方法是什么?...所以我可以打印这些值?
require_once('Ping/Ping.php');
$host = 'www.example.com';
$ping = new Ping($host);
$latency = $ping->ping();
if ($latency) {
print 'Latency is ' . $latency . ' ms';
}
else {
print 'Host could not be reached.';
}