Windows 版 xampp
Why my localhosted files appear like this?
Everything is undefined, the defined variables aren't working.
Am I supposed to enable a plugin in xampp to get it to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
必须禁用 PHP 短标签。如果您检查生成的页面的源代码,您会注意到 img 标签具有 src 值,例如
您在此处有两个选项。更改代码
或在 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
You have two options here. Either change the code to
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 PHPincompatible with XML documents and make code less portable.