带有 .TXT 的 .PHP 文件包括(代码显示错误)

发布于 2024-11-12 05:39:57 字数 221 浏览 3 评论 0原文

所以我现在使用 .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 技术交流群。

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

发布评论

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

评论(2

何以心动 2024-11-19 05:39:57
Warning: include(txt) [function.include]: failed to open stream: 
No such file or directory in /home/hletf/public_html/essex/index.php on line 27

您的问题已经在那里说明了吗?由于 include(txt) 不是文件的正确包含,因此出现错误。首先创建 *.txt 文件,然后包含它。类似于 include("foo.txt")

Warning: include(txt) [function.include]: failed to open stream: 
No such file or directory in /home/hletf/public_html/essex/index.php on line 27

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")

愿与i 2024-11-19 05:39:57

如果您希望文件 .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

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