在外部 PHP 文件中调用 Drupal 函数
如何调用 Drupal 函数或获取位于 drupal 安装文件夹下的 PHP 文件中的全局变量。我是第一次这样做。我的代码中是否需要包含任何文件才能访问 Drupal 函数或变量?
How can I call a Drupal function or get the global variable in a PHP file which is located under the drupal installation folder. I doing it for the first time. Are there any files I need to include in my code in order to access the Drupal function or variables?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果上面解释的示例不起作用,请尝试以下操作:
If the above explained example doesn't work try this:
取自上面评论中的链接问题
您需要在外部 PHP 文件中引导 Drupal:
请务必更改 Drupal 安装的路径,然后在上面发布的代码下方添加您的代码。
Taken from the linked question in the comment above
You need to Bootstrap Drupal in the external PHP file:
Be sure to change the path to your Drupal installation, then add your code below the code posted above.
当脚本位于我的 Drupal 根目录中时,上面的代码适用于我。这绝对会加载所有内容,而不仅仅是 Drupal 核心,包括贡献的模块挂钩。
The above code works for me, when the script is in my Drupal root directory. This loads absolutely everything, not just Drupal core, including contributed module hooks.