我有一个包含
的ip.txt文件127.0.0.1
我需要从表单中获取文本文件,并使用php在新窗口中显示ping详细信息。如何从文本文件中读取ip以便从读取的信息中ping它。
答案 0 :(得分:1)
试试此代码
$ips = array();
$file = @fopen("ip.txt", "r");
if ($file) {
while (($buffer = fgets($file, 4096)) !== false) {
$ips[] = $buffer;
}
if (!feof($file)) {
echo "Error: unexpected fgets() fail\n";
}
fclose($file);
echo '<pre>'; print_r($ips); echo '</pre>';
}