带有 .TXT 的 .PHP 文件包括(代码显示错误)
所以我现在使用 .php 页面来使用 .txt 包含进行导航。
这是我正在处理的实时页面: http://glustik.com/essex/index.php
似乎显示第27行代码错误,不知道如何让这个包含工作。
有人愿意为我指出这个正确的方向吗?
So I am using .php pages now to use a .txt include for the navigation.
Here is the live page I am working on :
http://glustik.com/essex/index.php
It seems to display line 27 code errors, not sure how to get this include to work.
Anyone care to point me in the right direction for this one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的问题已经在那里说明了吗?由于 include(txt) 不是文件的正确包含,因此出现错误。首先创建 *.txt 文件,然后包含它。类似于
include("foo.txt")
Is your problem already stated there? There is an error since include(txt) is NOT a right inclusion of a file. Create your *.txt file first and then include it. Something like
include("foo.txt")
如果您希望文件 .txt 被解析为 .php 文件,您应该更改您的 apache 配置,或者编写您自己的类来解析该文件并返回您需要的值
If you want files .txt to be parse as .php files you should change your apache configuration, or write your own class which will parse this file and return value that you need