Drupal 7用户图片链接
我只需要 Drupal 7 中当前登录用户的个人资料图片的链接。我尝试了这个:
global $user;
print $user->picture;
输出:2
和这个:
global $user;
print theme('user_picture', array('account' => $user));
输出:图像为 << img >-元素
I just need the link of the profile picture of the current logged-in user in Drupal 7. I tried this:
global $user;
print $user->picture;
output: 2
And this:
global $user;
print theme('user_picture', array('account' => $user));
Output: the image as a < img >-element
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
图片作为对文件的引用存储在
files
表中,您可以加载文件并提取路径,如下所示:The picture is stored as a reference to a file in the
files
table, you can load the file and extract the path like this: