我如何告诉渲染引擎使用我的“$user”明确地?

发布于 2025-01-04 01:17:57 字数 150 浏览 1 评论 0原文

在 Drupal 6 中,我想将名为 $user 的参数传递给 PHP 模板进行渲染。但是,渲染引擎始终将 $user 视为全局引擎。

有什么方法可以告诉渲染引擎显式使用我的 $user 吗?

In Drupal 6, I want to pass a parameter named $user to a PHP template to render. However, the render engine always treats $user as the global one.

Is there any way to tell the render engine to use my $user explicitly?

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

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

发布评论

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

评论(1

べ映画 2025-01-11 01:17:57

试试这个: $user->name;

或在函数中:

<?php
function get_username() {
    global $user;
    print $user->name;
    exit();
  }
?>

try this: $user->name;

or in function:

<?php
function get_username() {
    global $user;
    print $user->name;
    exit();
  }
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文