session starts automatically in PHP 5.6.8? -
i'm running php 5.6.8. i'm trying build website. i've called session_status() on multiple pages , returns true. why happen? didn't ever call session_start(). i'm sorry if question asked or if can find answer on google. didn't. thank you.
your check should this:
if(session_status() === php_session_active)
the session_status function not return true or false value. http://php.net/manual/en/function.session-status.php
Comments
Post a Comment