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.
我添加了这个
AddType application/x-httpd-php .htm .html
到我的 .htaccess,因为我需要一些 html 文件的行为类似于 php 文件。奇怪的是,当我加载这些文件时,“json_decode”和“json_encode”会产生“未定义函数”错误。当我在普通的 php 文件中使用它们时,一切正常。似乎使用旧版本的 php 来解析 html 文件。
有人可以解释一下原因吗?
好吧,也许这是一个愚蠢的问题。无论如何我都会回答:
AddType application/x-httpd-php5 .html
是解决方案。
编辑:事实证明,我的虚拟主机服务安装了不同版本的 php,因此我需要更具体(感谢未知评论者,他删除了他的评论,为我指出了背后原因的正确方向。