ConFoo Montreal 2026: Call for Papers

Voting

: zero minus zero?
(Example: nine)

The Note You're Voting On

Ben (aocool at msn d0t com)
9 years ago
Just another function to determine whether the session has already started:

function is_session_started () {
return function_exists ( 'session_status' ) ? ( PHP_SESSION_ACTIVE == session_status () ) : ( ! empty ( session_id () ) );
}

<< Back to user notes page

To Top