php – 从View获取当前用户

所以我想要做的是,在我的主要布局中,有一个登录用户菜单,以及一个不同的匿名用户.

布局将在每个页面上使用,所以我不知道如何做到这一点,正如我所见,Auth组件只能在控制器中使用,如果我只需要在一个控件中执行此操作,这将是很好的查看,但对于每个视图,我该怎么做?我必须在AppController上做点什么吗?

我想做的基本上是

// layout
<?PHP if(logged): ?>
Welcome <?PHP echo $user; ?>
<?PHP else: ?>
Welcom anon,Log in?
<?PHP endif; ?>
您也可以使用Auth组件访问视图中的登录用户.从 manual

Once a user is logged in,you will often need some particular
information about the current user. You can access the currently
logged in user using AuthComponent::user(). This method is static,and
can be used globally after the AuthComponent has been loaded. You can
access it both as an instance method or as a static method:

// Use anywhere
AuthComponent::user('id')

// From inside a controller
$this->Auth->user('id');

你应该可以这样做:

// layout
<?PHP if(AuthComponent::user('name')): ?>
    Welcome <?PHP echo AuthComponent::user('name'); ?>
<?PHP else: ?>
    Welcom anon,Log in?
<?PHP endif; ?>

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...