我如何告诉渲染引擎使用我的“$user”明确地?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
$user->name;
或在函数中:
try this:
$user->name;
or in function: