PHP:包含目录名(__FILE__)的文件,但仍然在 Eclipse 中获得 php 代码帮助

发布于 2024-12-27 14:06:13 字数 391 浏览 1 评论 0原文

在脚本中,我包含一个 php 库:

include_once dirname(__FILE__) . "/lib.php";

这样我就不会在 Eclipse 中获得该库中函数的代码帮助。 但如果我使用:

include_once "lib.php";

代码辅助确实工作。

但我想使用 dirname(__FILE__) 来确保我在正确的目录中查找该库。 (这个脚本可能包含在另一个 php脚本中,然后它就不再工作了,不使用dirname(__FILE__)

任何让代码辅助工作的提示,同时还在使用 dirname(__FILE__) 吗?

In a script I include a php library with :

include_once dirname(__FILE__) . "/lib.php";

This way I don't get code assist for the functions in this library in Eclipse.
But if I use :

include_once "lib.php";

code assist does work.

But I want to use dirname(__FILE__) to be sure I'm looking in the right directory for the lib. (this script may be included in another php-script, and then it doesn't work anymore, without using dirname(__FILE__)

Any tips to get code assist working, while still using dirname(__FILE__) ?

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

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

发布评论

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

评论(1

维持三分热 2025-01-03 14:06:13

如果您的项目中存在该文件(并且您的项目是 Aptana PHP 项目),您将获得项目中所有文件的代码帮助,无论您是否包含或需要文件。

如果您的文件位于当前项目之外(不同的项目或磁盘上的某个位置),您可以将它们作为外部库附加。

您可以按照 https://wiki.appcelerator.org/display 中的说明进行操作/tis/PHP+Development#PHPDevelopment-AttachingPHPResources 并了解如何根据您的需要执行此操作。

希望有帮助。

In case the file exist in your project (and your project is an Aptana PHP project), you will get the code assist for all the files in the project, no matter if you include or require a file.

In case your files are located outside of your current project (a different project, or somewhere on your disk), you can attach them as an external library.

You can follow the instructions at https://wiki.appcelerator.org/display/tis/PHP+Development#PHPDevelopment-AttachingPHPResources and learn how to do that according to your needs.

Hope that helps.

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