如何使用 PHP 仅从文件中获取特定内容。
我有一个包含内容的文件:
reference 1.pdb
mobile 4r_1.pdb
ignore
fit
mobile 4r_10.pdb
ignore
fit
mobile 4r_22220.pdb
ignore
fit
现在,我想取所有的名字,即(输出)
4r_1
4r_10
4r_22220
在一个数组中并打印它。
我用php写的程序不能正常运行,可以看看
$data = file_get_contents('file.txt'); // to read the file
$convert = explode("\n", $data); // take it in an array
$output4 = preg_grep("/mobile/i",$convert); //take only the line starts with mobile and put it in an array
if ($output4 !="/mobile/i")
{
print $output4;
print "\n";
}
请帮忙!仅提取名称