为什么是“<?” 不再工作,而是只有“
发布于 2024-07-11 19:59:00 字数 298 浏览 10 评论 0 原文

我使用 xampp 进行本地开发,然后从直接安装程序安装了 PHP。 现在,在我的一些 PHP 代码中,只有以 "" 开头的 PHP 代码才能正确解析。 任何以“”或“”开头的内容都将被完全忽略并保持原样。

如何调整配置来解析任一令牌?

I was using xampp to develop locally and then I installed the PHP from the direct installer. Now in some of my PHP code, only PHP code that starts with "<?php" is correctly parsed. Anything that starts with "<?" or "<?=" is completely ignored and just left as is.

How can I adjust the configuration to parse either tokens?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

梦途 2024-07-18 19:59:00

这是一个名为的 php.ini 设置

short_open_tag = 1 # (enabled)

This is a php.ini setting named

short_open_tag = 1 # (enabled)
傾旎 2024-07-18 19:59:00

我建议您禁用 short_open_tag 并且仅适用于 。 启用 short_open_tag 时,它可能会与 XML 发生冲突处理指令 ,因为 PHP 开放标记和 XML PI 都以 开头。

I recommend you to disable short_open_tag and only work with <?php. When short_open_tag is enabled, it can collide with the XML processing instruction <?xml as both the PHP open tag and XML PI start with a <?.

微凉徒眸意 2024-07-18 19:59:00

通过仅使用 作为预处理器启动,您可能会使预处理器与格式良好的 XML 文档混淆。 XML 代表 表示处理指令,想象一个带有嵌入 XML 且需要 XSLT 处理的 XHTML 文档...预处理器会与样式表处理指令混淆,并且会抛出一个错误。

强烈建议使用 处理器起始标签,尝试使用
Short_open_tag = 在 php.ini 中关闭。 另外,您可以尝试使用 如果您遇到问题。

By using only <? as start preprocessor startup, you can get the preprocessor confused with well formed XML documents. XML stands <? for processing-instruction, imagine an XHTML document with embeded XML that requires XSLT processing... The preprocessor will get confused with the stylesheet processing instruction and will throw an error.

It's higly recomended to use the <?php processor starting tag, try using the
short_open_tag = Off in your php.ini. Also, you can try using <?php ini_set('short_open_tag', 'On'); > if you are getting problems.

著墨染雨君画夕 2024-07-18 19:59:00

您可以在 php.ini 中设置 Short_open_tag = On

You can set short_open_tag = On in the php.ini

∞琼窗梦回ˉ 2024-07-18 19:59:00

这是一个配置选项,更多信息请参见:http://www.php.net/ini.core(查找short_open_tag)。

It's a configuration option, more information on: http://www.php.net/ini.core (look for short_open_tag).

优雅的叶子 2024-07-18 19:59:00

对于较新版本:

short_open_tag = On

For the newer version:

short_open_tag = On
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文