How can you access cakephp session variable from php script?
I tried $_SESSION , but it returns empty. I specifically want to get Auth session information.
$_SESSION
thanks
try it...
session_name ('CakePHP');session_start ();print_r ($ _ SESSION);
Source: https://habr.com/ru/post/904409/More articles:From javascript to java (GWT story) - javaCreating a start screen for an HTML5 canvas game? - javascriptAccess cakephp (auth) session from outside cakephp - authenticationWhy does gnu readline require me to hit the c control twice? - haskellChoosing a thread to perform a barrier action - Java CyclicBarrier - javaWhy are my C # Lists not working? - enumsHow do I avoid the “This message was not sent” warning when sending email using the Google App Engine? - pythonRemoving fast duplicates in numpy and python - performanceto executeSegueWithIdentifier from TableViewController to the second TVC built into NavController does not work - iosHow to view the notification center on the iOS simulator? - iosAll Articles