Answers for "a session is started with the session_start() function"

PHP
0

a php session was created by a session_start()

if ( !session_id() ) {
    session_start( [
        'read_and_close' => true,
    ] );
}
Posted by: Guest on July-28-2021

Code answers related to "a session is started with the session_start() function"

Browse Popular Code Answers by Language