我有一个文件 test.txt,我想遍历它。一旦我把“here”字符串放在后面,我想在下面的行中放置“test”。
$lines = array();
$match = 'here';
foreach(file('test.txt') as $line)
{
if((string)$match == (string)$line)
{
array_push($lines, 'this');;
}
array_push($lines, $line);
不幸的是,即使 txt 文件中有一个“这里”,if 语句也永远不会解析为真。
谢谢