未定义的属性:PDOStatement :: $ rows

时间:2016-02-01 03:58:31

标签: php pdo mysql-error-1064

我不确定为什么会这么一点代码:

if($sth->rows == 0){
    echo "Incorrect username or password - 1";
}

正在提取错误Undefined属性:PDOStatement :: $ rows。这在一个不同的PHP脚本上运行得很好,我基本上只改变了一些东西。然而,我也收到回声“不正确的用户名或密码-1”,这意味着if语句确实运行。

这是完整的PHP代码。

<?php
$lusername = $_POST['username'];
$lpassword = $_POST['password'];

//Hashing password
$cost = 10;

$salt = strtr(base64_encode(mcrypt_create_iv(16, MCRYPT_DEV_URANDOM)), '+', '.');

$salt = sprintf("$2a$%02d$", $cost) . $salt;

$hash = crypt($lpassword, $salt);

// Create connection
$dsn = 'mysql:dbname=weblupne_template3;host=localhost';
$username = 'somethingFreakingCrazyMagical';
$password = 'somethingEvenMoreCrazyFreakingMagical';
try {
    $db = new PDO($dsn, $username, $password); // also allows an extra parameter of configuration
    $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); // set the PDO error mode to exception
} catch(PDOException $e) {
    die('Could not connect to the database:<br/>' . $e);
}

//Where to select from
$sth = $db->prepare('SELECT password FROM login WHERE username = :username LIMIT 1');
$sth->bindParam(':username', $lusername);
$sth->execute();
$user = $sth->fetch(PDO::FETCH_OBJ);

if($sth->rows == 0){
    echo "Incorrect username or password - 1";
}
else{
    //Tests if correct
    echo $user->hash;
    if ( hash_equals($user->password, crypt($lpassword, $user->password)) ) {
        echo "You check out";
    }
    else{
        echo "Incorrect username or password - 2";
    }
}
?>

1 个答案:

答案 0 :(得分:0)

您必须使用$sth->rowCount(),没有名为rows的属性。