如何从drupal数据库获取信息
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是将您的独立脚本挂接到 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.