在 drupal 中添加自己的库

发布于 2024-11-27 04:48:45 字数 534 浏览 0 评论 0原文

我想使用 hook_init 包含一个像这样的 php 文件 .module 文件

function drupsocial_init() {
  require_once base_path().(drupal_get_path('module', 'drupsocial') . '/libraries/dsinvoke.php');

}

,但显示此错误

Fatal error: require_once() [function.require]: Failed opening required '/drupal6/trunk/sites
/all/modules/drupsocial/libraries/dsinvoke.php' (include_path='.;D:\xampp\php\PEAR') in D:\xampp\htdocs
\drupal6\trunk\sites\all\modules\drupsocial\drupsocial.module on line 32

如何包含此类文件

i want to include a php file .module file like this using hook_init

function drupsocial_init() {
  require_once base_path().(drupal_get_path('module', 'drupsocial') . '/libraries/dsinvoke.php');

}

but showing this error

Fatal error: require_once() [function.require]: Failed opening required '/drupal6/trunk/sites
/all/modules/drupsocial/libraries/dsinvoke.php' (include_path='.;D:\xampp\php\PEAR') in D:\xampp\htdocs
\drupal6\trunk\sites\all\modules\drupsocial\drupsocial.module on line 32

how can i include such file

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

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

发布评论

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

评论(2

夜灵血窟げ 2024-12-04 04:48:45

如果您知道文件的完整路径并且可以访问该文件,通常可以包含任何文件。检查库的路径,更正它,应该不会有任何问题。

首先从文件的完整路径开始。如果可行,您可以考虑使用文件的动态路径。

You normally can include any file if you know the full path of the file and the file is accessible. Check the path to the library, correct it and you should not have any problem.

Start with the full path to the file first. If that works, you can think about using a dynamic path to the file.

如痴如狂 2024-12-04 04:48:45

为什么drupal尝试加载trunk目录中的文件?你正在开发 svn 仓库吗?我认为这条路有问题。

我还建议您检查权限

希望这有帮助

why drupal trying to load the file in the trunk directory ? are you working on a svn repo ? i think there's something wrong with that path.

I also suggest you to check permissions

Hope this helps

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