Re: id of the current user

2016-02-09 Thread Kamal Deol
$this->Auth->User() gives the complete array and then you can access any of the index .:) On Thu, Feb 4, 2016 at 9:23 PM, Vishwadeep Kapoor < vishwadeepkap...@gmail.com> wrote: > Is there any way to get the value of the current login user in cake php, i > have search for this every where at stack

Re: id of the current user

2016-02-08 Thread Paul Vaughan
In CakePHP 3.2 I am using: $userid = $this->request->session()->read('Auth.User.id'); I hope that's useful. Paul. On 4 February 2016 at 15:53, Vishwadeep Kapoor wrote: > Is there any way to get the value of the current login user in cake php, i > have search for this every where at stackoverf