Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有需要进一步处理的模板文件,因此想使用包含而不使用 file_get_contents 将其分配给字符串变量。这样做的原因是因为最终输出是通过ob缓冲的,并且包含需要执行的php。如果我使用 file_get_contents 它不会执行。问题是如果我使用 $output = include 'file.php' 它会打印输出而不分配。
尝试这个:
ob_start(); include 'file.php'; $output = ob_get_clean();