如何从drupal数据库获取信息

发布于 2024-10-31 06:34:02 字数 352 浏览 1 评论 0原文

我是 drupal 的新手,我想在 phpscript 中查看登录的用户名和他的电子邮件地址,该脚本不在 drupal 安装中。 知道我该怎么做吗?使用 drupal 6.2

已经尝试过这个

<?php
require_once 'includes/bootstrap.inc';
require_once 'includes/common.inc';
require_once 'includes/module.inc';

global $user; 
if ($user->uid) 
{ 
$name=$user->name; 
echo $name; 
}

?>

谢谢

I am new to drupal and I want to see the logged in user name and his email address in a phpscript which is not in drupal installation.
Any idea how would I go about it. Using drupal 6.2

tried this already

<?php
require_once 'includes/bootstrap.inc';
require_once 'includes/common.inc';
require_once 'includes/module.inc';

global $user; 
if ($user->uid) 
{ 
$name=$user->name; 
echo $name; 
}

?>

Thanks

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

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

发布评论

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

评论(1

牛↙奶布丁 2024-11-07 06:34:02

最好的方法是将您的独立脚本挂接到 Drupal 的引导机制中。 这是一个问题,展示了如何这样做。

然后,您的全局 $user 解决方案就会起作用。

The best way to do this is hook your standalone script into Drupal's bootstrapping mechanism. Here's a SO question that shows how to do that.

Then, your global $user solution will work.

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