如何在Drupal安装文件夹下的PHP文件中调用Drupal函数或获取全局变量。我是第一次这么做。为了访问Drupal函数或变量,我的代码中是否需要包含任何文件?
如果上面解释的例子不起作用,试试这个:
$path = $_SERVER['DOCUMENT_ROOT'];
chdir($path."/drupal");
define('DRUPAL_ROOT', getcwd()); //the most important line
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
取自上面评论中的链接问题
您需要在外部PHP文件中引导Drupal:
/** bootstrap Drupal **/
chdir("/path/to/drupal/site/htdocs");
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
请确保更改Drupal安装的路径,然后在上面发布的代码下面添加您的代码。
define('DRUPAL_ROOT', getcwd());
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
当脚本在我的Drupal根目录中时,上面的代码对我有效。这加载了所有的东西,不仅仅是Drupal核心,包括贡献的模块挂钩。
define('DRUPAL_ROOT', getcwd());
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
global $user;
print_r($user);