如何使用php中的preg_match从.txt文件中读取IP地址

时间:2014-12-07 05:13:37

标签: php preg-match preg-match-all pre

我有一个包含

的ip.txt文件

127.0.0.1

我需要从表单中获取文本文件,并使用php在新窗口中显示ping详细信息。如何从文本文件中读取ip以便从读取的信息中ping它。

1 个答案:

答案 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>';
}