mode变量用来填写正则表达式

/opt/datafile是目标数据文件

#!/usr/bin/php

<?php

$mode="/tom/";

$fp=fopen('/opt/datafile','r');

while(!feof($fp)){

$string=fgets($fp);

#echo $string.chr(10);

if (preg_match($mode,$string)){

echo $string;

}

}

?>