PHP file_get_contents,在include之前在包含的文件上执行PHP

时间:2012-06-10 12:51:40

标签: php html file-get-contents

目前我使用file_get_contents命令来包含文件的html。现在我添加了PHP,它导致了一个问题。 PHP被读作html,因此没有被执行。如何使用PHP执行检索文件内容?

哦,我需要内容。所以包括在这种情况下不起作用我相信,对吗?

谢谢!

1 个答案:

答案 0 :(得分:6)

ob_start();
include 'file_to_include.php';
$contents = ob_get_clean();

包含文件的内容(正在执行PHP)位于$contents