Voting

: min(seven, one)?
(Example: nine)

The Note You're Voting On

ayon at hyurl dot com ΒΆ
9 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