PHP ini设置强制直接打印php代码?
在 php ini 中,哪个设置将强制直接在 html 中打印 php 代码?
我发现我的一些使用 obstart 的代码会有这个问题
,但如果我复制其他服务器 php.ini,它会正常播放
in php ini, which seeting will force print the php code direcly in html?
i found that some of my code which using obstart will have this problem
but if i copy the other server php.ini, it play normally
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 httpd.conf 中
In httpd.conf
没有任何配置设置可以将您的代码直接打印为 HTML。
在代码中使用短开放标记(例如
)并且不在配置中启用它们可能会出现问题,但这就是我能想到的。
其他任何问题都可能是您的服务器配置和/或模块的错误。
There is no configuration setting that will print your code directly into HTML.
There may be an issue with using short open tags (eg
<? ... ?>
) in your code and not enabling them in configuration, but that's all I can think of.Anything else would be the fault of your server configuration and / or modules.