PHP包括不在HTML中工作

时间:2014-12-17 14:27:23

标签: php html

以下html不会从包含的php文件中产生任何响应。

<!DOCTYPE html>
<html>
<body>
Here is some text. <br>
<?php include 'hello.php'; ?>
</body>
</html>

hello.php文件包含无处不在的<?php echo "Hello world!"; ?>

其他信息:

  • 文本行正确显示。
  • PHP已正确安装并正常运行。来自源目录内的调用会生成预期的配置数据。
  • html文档名为 test.php
  • 的error_reporting(E_ALL);不产生额外的数据。

  • 1 个答案:

    答案 0 :(得分:1)

    在你的html页面的末尾或第一页添加此内容,看看有什么破坏:

    <?php error_reporting(-1); ?>
    

    这适用于您的包含:

    <?php include("file.php"); ?>