Answers for "how to check session with if statement php"

PHP
0

php check if session is running

<?php
if(session_status() == PHP_SESSION_ACTIVE){
    //a session is already running
    session_destroy(); //stops the session
}
?>
Posted by: Guest on March-01-2021
0

check session php

// For PHP versions > 5.4.0

if (session_status() === PHP_SESSION_NONE) {
    session_start();
}

// For PHP Versions < 5.4.0

if(session_id() == '') {
    session_start();
}
Posted by: Guest on March-09-2021

Code answers related to "how to check session with if statement php"

Browse Popular Code Answers by Language