如何在 PHP 文件上执行 str_replace 或 preg_replace?

How do I do a str_replace or preg_replace on a PHP file?

如果我有一个带有 str_replace 或 preg_replace 的 index.php 文件。我如何对模板文件进行文本搜索,例如:

str_replace("%title%", "Smart Title", require_once("template/index.tpl"));

使用 file_get_contents 而不是 require_once。

echo str_replace("%title%", "Smart Title", file_get_contents("template/index.tpl"));

只需使用file_get_contents()。使用下面的代码

 echo str_replace("%title%", "Smart Title", file_get_contents("template/index.tpl"));

希望对您有所帮助