Windows 版 xampp

发布于 2024-09-27 06:14:45 字数 196 浏览 2 评论 0原文

为什么我的本地主机文件会出现这样的情况?

http://109.236.82.36/upload/

一切都未定义,定义的变量不起作用。

我是否应该在 xampp 中启用插件才能使其正常工作?

Why my localhosted files appear like this?

http://109.236.82.36/upload/

Everything is undefined, the defined variables aren't working.

Am I supposed to enable a plugin in xampp to get it to work?

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

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

发布评论

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

评论(1

我三岁 2024-10-04 06:14:45

必须禁用 PHP 短标签。如果您检查生成的页面的源代码,您会注意到 img 标签具有 src 值,例如

<?=$website?>/images/hitpoints.gif

您在此处有两个选项。更改代码

<?php echo $website ?>/images/hitpoints.gif

或在 php.ini 中启用短标签。您可以使用谷歌获得有关第二个选项的帮助。

我强烈建议使用第一个,因为短标签将在未来版本的 PHP 中被丢弃,与 XML 文档不兼容,并使代码的可移植性较差。

PHP short tags must be disabled. If you check the source of your generated page, you'll notice that the img tags have src values like

<?=$website?>/images/hitpoints.gif

You have two options here. Either change the code to

<?php echo $website ?>/images/hitpoints.gif

or enable short tags in php.ini. You can get help on the second option using google.

I strongly suggest the first one as short tags are going to be chucked in future versions of PHP incompatible with XML documents and make code less portable.

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