-1

私は PDO と一緒に mysql 関数 FROM_UNIXTIME を使用しようとしています:

$sth = $dbh->prepare("UPDATE ".DB_PREFIX."_logins SET num_of_trys = num_trys-1, 
       last_try = FROM_UNIXTIME(:last_try), WHERE username = :username 
       OR ip = :ip");
$sth->bindParam(':ip', $ip); 
$sth->bindParam(':username', $user);
$sth->bindParam(':last_try', $lst);
$sth->execute();

しかし、エラーメッセージが表示されます。これを行う正しい方法は何ですか?

エラーメッセージは次のとおりです。

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: 
             Syntax   error or access violation: 1064 You have an error 
             in your SQL syntax; check the manual that corresponds to your 
             MySQL server version for the right syntax to use near 
             'WHERE username = 'sadas' OR ip = '1834871734'' at line 1' 
              in /pathtofile/acc_functions.php:72 Stack trace: #0 
              /pathtofile/acc_functions.php(72): PDOStatement->execute() #1 
              /pathtofile/login.php(44): check_login_attempts(1834871734, 
              1343941422, 'sadas') #2 {main} thrown in 
              /pathtofile/acc_functions.php on line 72
4

1 に答える 1

6

,前に持っていたキャラクターを削除しますWHERE

于 2012-08-02T21:13:32.527 に答える