Voting

: max(three, two)?
(Example: nine)

The Note You're Voting On

ayon at hyurl dot com
8 years ago
This is how the session_status() works:
<?php
function session_status(){
if(!
extension_loaded('session')){
return
0;
}elseif(!
file_exists(session_save_path().'/sess_'.session_id()){
return
1;
}else{
return
2;
}
}
?>

<< Back to user notes page

To Top