我要去include()
一个wordpress主题文件中的php文件。文件为header.php,功能如下:
<?php
error_reporting(E_ALL);
$filename = "path/to/file.php";
if (file_exists($filename)){
echo 'Ok';
include($filename);
} ?>
“Ok”打印在生成的 html 中,但之后立即停止输出。我使用了具有相同结果的相对路径和绝对路径。我错过了一些关于家庭主题工作的东西吗?
文件权限没问题。
编辑:在 wordpress 中设置了display_errors 。我必须启用它才能找到错误并解决。这是一个致命的。