你如何在文档上找到一个字符串然后回显该字符串?
例如,
文件:
blah blah result.php?whatiwanttoecho blah
或者:
blahhh result.php?whatiwanttoecho blah blah blah
总会有'result.php?在我想要回应之前。
我正在寻找的最终结果:
$doc = "./doc.txt";
$doccontents = file_get_contents($file);
然后我需要帮助的代码的最终结果是:
$result = 'whatiwanttoecho';
echo $result;
希望这是有道理的。谢谢 (: