2015-04-23 89 views
0

我收到來自PHP以下錯誤語句反編譯PHP如果有else子句

Parse error: syntax error, unexpected 'else' (T_ELSE) in C:\wamp\www\project alpha\functions.php 

我評論else語句與 - 在下面的代碼//ERROR ON THIS ELSE STATEMENT。但我無法弄清楚它爲什麼會失敗。

你能看到代碼有問題嗎?

function login($email, $password, $mysqli) { 
    // Using prepared statements means that SQL injection is not possible. 
    if ($stmt = $mysqli - > prepare("SELECT carer_id, username, password 
    FROM carers 
    WHERE email = ? 
    LIMIT 1")) { 
    $stmt - > bind_param('s', $email); // Bind "$email" to parameter. 
    $stmt - > execute(); // Execute the prepared query. 
    $stmt - > store_result(); 

    // get variables from db result. 
    $stmt - > bind_result($user_id, $username, $db_password); 
    $stmt - > fetch(); 

    if ($stmt - > num_rows == 1) { 
     // If the user exists we check if the account is locked 
     // from too many login attempts 

     if (checkbrute($user_id, $mysqli) == true) { 
     // Account is locked 
     // Send an email to user saying their account is locked 
     return false; 
     } else { 
     // Check if the plain textpassword verified against hashed password in the database (not ==) 
     if (password_verify($password, $db_password)) { 
      // Password is correct! 
      // Get the user-agent string of the user. 
      $user_browser = $_SERVER['HTTP_USER_AGENT']; 
      // XSS protection as we might print this value 
      $user_id = preg_replace("/[^0-9]+/", "", $user_id); 
      $_SESSION['user_id'] = $user_id; 
      // XSS protection as we might print this value 
      $username = preg_replace("/[^a-zA-Z0-9_\-]+/", 
      "", 
      $username); 
      $_SESSION['username'] = $username; 
      $_SESSION['login_string'] = password_hash($db_password.$user_browser, PASSWORD_BCRYPT); 
      // Login successful. 
      return true; 
     } else { //ERROR ON THIS ELSE STATEMENT 
      // Password is not correct 
      // We record this attempt in the database 
      $now = time(); 
      $mysqli - > query("INSERT INTO login_attempts(user_id, time) 
           VALUES ('$user_id', '$now')"); 
      return false; 
     } 
     } 
    } else { 
     // No user exists. 
     return false; 
    } 
    } 
} 
+1

OMG!你的代碼看起來像一個迷宮...代碼縮進將幫助你理清 –

+0

某人請編輯... –

回答

0

以前的else部分在此之前沒有結束else。關閉以前的else

............. 
} else { 
     // Check if the plain textpassword verified against hashed password in the database (not ==) 
      if (password_verify($password, $db_password)) { 
      // Password is correct! 
      // Get the user-agent string of the user. 
      $user_browser = $_SERVER['HTTP_USER_AGENT']; 
      // XSS protection as we might print this value 
      $user_id = preg_replace("/[^0-9]+/", "", $user_id); 
      $_SESSION['user_id'] = $user_id; 
      // XSS protection as we might print this value 
      $username = preg_replace("/[^a-zA-Z0-9_\-]+/", 
                 "", 
                 $username); 
      $_SESSION['username'] = $username; 
      $_SESSION['login_string'] = password_hash($db_password . $user_browser, PASSWORD_BCRYPT); 
      // Login successful. 
      return true; 
      } 
     } else { //ERROR ON THIS ELSE STATEMENT 
      // Password is not correct 
      // We ...............