检查数据库是否存在用户

时间:2014-10-03 13:53:43

标签: php mysql

我正在尝试下面的代码来检查数据库中的用户存在和根据输出的回显结果。但我得到“致命错误:方法名称必须是.............行中的字符串“那么,代码中出了什么问题。有什么建议吗?

<?php

$user_email="somthing@gmail.com";


try
{
    /*** connect to database ***/
    /*** mysql hostname ***/
    $mysql_hostname = '127.0.0.1';

    /*** mysql username ***/
    $mysql_username = 'root';

    /*** mysql password ***/
    $mysql_password = '';

    /*** database name ***/
    $mysql_dbname = 'something';


    /*** select the users name from the database ***/
    $dbh = new PDO("mysql:host=$mysql_hostname;dbname=$mysql_dbname", $mysql_username,     $mysql_password);
}
catch(PDOException $e)
{
echo $e->getMessage();
}



if ($this->$dbh()) {
        // check if username or email already exists
        $query_check_user_email = $this->$dbh->prepare('SELECT user_email FROM users          WHERE user_email=:user_email');
                    $query_check_user_email->bindValue(':user_email', $user_email,     PDO::PARAM_STR);
        $query_check_user_email->execute();
        $result = $query_check_user_email->fetchAll();

        // if username or/and email find in the database
        // TODO: this is really awful!
        if (count($result) > 0) {
            echo "exists!";
            }
        } else {
            echo "non existant";
 }

 ?>

有任何建议吗?

3 个答案:

答案 0 :(得分:2)

首先:

$dbh = new PDO("mysql:host=$mysql_hostname;dbname=$mysql_dbname", $mysql_username,     $mysql_password);

这将是你的php块/文件/范围内的变量。您实际上并未将其设置为成员,因为您不在课堂上。

第二:$this->$dbh()

您不在类成员方法的范围内。您的代码没有$this

尝试使用简单:$dbh

答案 1 :(得分:0)

必须使用

$dbh代替$this->dbh

if ($dbh) {
        // check if username or email already exists
        $query_check_user_email = $dbh->prepare('SELECT user_email FROM users    
                                                 WHERE user_email=:user_email');
        $query_check_user_email->bindValue(':user_email', 
                                           $user_email, PDO::PARAM_STR);
        $query_check_user_email->execute();
        $result = $query_check_user_email->fetchAll();

        // if username or/and email find in the database
        // TODO: this is really awful!
        if (count($result) > 0) {
            echo "exists!";
            }
        } else {
            echo "non existant";
 }
 ?>

答案 2 :(得分:0)

也许这有帮助

$stmt = $dbh->prepare("SELECT * FROM user WHERE user_email = :email;");
$stmt->bindParam(":email", $email);
$stmt->execute();
$result = $stmt->fetchAll(PDO::FETCH_BOTH);

顺便说一下,我宁愿调用表用户而不是用户。