在外部PHP文件中调用Drupal函数 [英] Calling Drupal functions in external PHP file

查看:134
本文介绍了在外部PHP文件中调用Drupal函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何调用Drupal函数或在位于drupal安装文件夹下的PHP文件中获取全局变量。我第一次这样做是否有任何文件需要包含在我的代码中才能访问Drupal函数或变量?

解决方案

从上面的评论中链接的问题



您需要在外部PHP文件中引导Drupal:



/
chdir(/ path / to / drupal / site / htdocs);
require_once'./includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

确保更改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?

解决方案

Taken from the linked question in the comment above

You need to Bootstrap Drupal in the external PHP file:

/** bootstrap Drupal **/
chdir("/path/to/drupal/site/htdocs");
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

Be sure to change the path to your Drupal installation, then add your code below the code posted above.

这篇关于在外部PHP文件中调用Drupal函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆