PHP 命名常量打印/连接作为变量名,而不是值

发布于 2024-09-11 12:33:01 字数 362 浏览 6 评论 0原文

我有一个旧的 osCommerce 网站,以前是 PHP4,现在运行在 PHP5 上。使用 define() 定义的命名常量计算不正确:

$string = '<a href="http://www.oscommerce.com" target="_blank">' . BOX_ENTRY_SUPPORT_SITE . '</a><br>';

将显示为 BOX_ENTRY_SUPPORT_SITE,而不是 BOX_ENTRY_SUPPORT_SITE 中放置的值。

需要更改 php.ini 中的某些内容吗?

I have an old osCommerce site that was PHP4, now running on PHP5. Named constants defined with define() are being evaluated incorrectly:

$string = '<a href="http://www.oscommerce.com" target="_blank">' . BOX_ENTRY_SUPPORT_SITE . '</a><br>';

will show as BOX_ENTRY_SUPPORT_SITE, not the value placed in BOX_ENTRY_SUPPORT_SITE.

Something needs to be changed in php.ini?

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

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

发布评论

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

评论(2

甜扑 2024-09-18 12:33:01

不,据我所知常量行为没有改变。

很可能该常量没有定义;尝试找到它的定义位置并查看该文件是否由您的脚本加载(即:通过 require 或 include)

No, AFAIK constants behavior hasn't changed.

Most likely the constant is not defined; try to find where it's being defined and see if the file is being loaded by your script (ie: by require or include)

就是爱搞怪 2024-09-18 12:33:01

当我将 osCommerce 网站从 PHP4 放到 PHP5 上时,我从未遇到过这个问题。

最有可能的是,该定义没有被正确地 define() 定义。 默认行为(放宽错误报告)是在未找到常量时显示该常量。

I never ran into this problem when putting osCommerce sites on PHP5 from PHP4.

Most probably, that define isn't being define()'d correctly. The default behaviour (with error reporting relaxed) is to show the constant like that when it isn't found.

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