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.
出于某种原因,我放置在index.php页面中的 PHP 无法正常工作。当我检查元素时,PHP 脚本是一个简单的include语句,被读取为 HTML 注释。我该如何解决?
index.php
include
两个可能的原因。首先是您的 Web 服务器未配置为处理 PHP。
其次,您可能正在使用较短的开放标签 ( <?),而这些标签可能在您的 PHP.ini 中被禁用。
<?
一旦你修复了 PHP 文件的处理,我相信它会起作用。如果没有,请发布您的代码并重试,以便我们提供更具体的答案。