Starts the session.

Returns

boolean True if session successfully started (or has already been started), false otherwise.

Source

						protected static function _start() {
		if (session_id()) {
			return true;
		}
		if (!isset($_SESSION)) {
			session_cache_limiter('nocache');
		}
		return session_start();
	}