PHP: session_is_registered - Manual - PHP: Hypertext Preprocessor
For those who have an older application which uses the session_is_registered..and you want to use that in php5.4 You can just define the function if required function session_is_registered($x) { if (isset($_SESSION['$x'])) return true; else return false;...