2013-12-18 84 views
6

我提出我的網站從PHP 5.3到5.4,現在我無法登錄到網站管理員PHP致命錯誤:調用未定義的函數了session_register()

我看到這個錯誤:

PHP致命錯誤:調用未定義的函數了session_register()在/home/regimhot/public_html/webmotionsV4/mvc/models/kit_model_useri.php上線18

該問題的代碼是:

 function login($username, $password) { 
      if(!$username || !$password) return false; 
      if($this->useri[$username]['password']==$password) { 
        session_register('userInfo'); 
        $_SESSION['userInfo'] = $this->useri[$username]; 
        $_SESSION['userInfo']['logat'] = true; 
        $this->userInfo = &$_SESSION['userInfo']; 

我該如何解決問題?我知道功能了session_register不是由PHP 5.4

+0

沒有必要寫了session_register的( '用戶信息')線 –

回答

相關問題