ドキュメントで文字列を見つけて、その文字列をエコーするにはどうすればよいですか?
例えば、
ドキュメント:
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;
これが理にかなっていることを願っています。ありがとう (: