什么是删除文本字符串的第一行的最佳方式,然后在
PHP中回应其余的?
例如.
这是文本字符串:
$t=<<<EOF First line to be removed All the rest Must remain EOF;
这是最终的输出:
All the rest Must remain
如果我在Bash中使用一个文件,我可以轻松地做下一个:
sed -i〜1d目标文件
要么:
有任何想法吗?
preg_replace如何
原文链接:https://www.f2er.com/php/138548.html$text = "First line.\nSecond line.\nThird line."; echo preg_replace('/^.+\n/','',$text);
这样你就不必担心文件中没有换行符的情况.
http://codepad.org/fYZuy4LS