获取两个字符串之间的内容 PHP
2022-08-30 15:00:17
什么是获取两个字符串之间内容的最佳方法,例如
ob_start();
include('externalfile.html'); ## see below
$out = ob_get_contents();
ob_end_clean();
preg_match('/{FINDME}(.|\n*)+{\/FINDME}/',$out,$matches);
$match = $matches[0];
echo $match;
## I have used .|\n* as it needs to check for new lines. Is this correct?
## externalfile.html
{FINDME}
Text Here
{/FINDME}
由于某种原因,这似乎适用于我代码中的一个位置,而不是另一个位置。我是否以正确的方式进行此操作?还是有更好的方法?
另外,输出缓冲区是执行此操作的方法还是file_get_contents?
提前致谢!