PHP:在同一个类(文件)中调用未定义的函数错误

时间:2014-07-22 18:42:43

标签: php function class

我正在开发一个使用SQL的项目。现在我已经创建了一个检查数据库的函数( check_database($ post))。该函数应该能够在任何其他函数中调用。我的另一个函数( authenticate($ post))在同一个类中调用此函数。当我尝试php文件时,我收到以下错误:

  

致命错误:调用 91 中的/Applications/XAMPP/xamppfiles/htdocs/Bootstrap-Profile/Code/Controllers/AccountController.php中的未定义函数check_database() >

我的完整代码将清楚错误的位置:

<?php
require_once('ConnectionController.php'); // requires
require_once('LayoutController.php');

class AccountController {
    private $connection;

    function __construct(){
        $server = new ConnectionController();
        $this->connection = $server->getConnection();
    }

    /**
     * Get account.
     * @return array|bool
     */
    function getUser($email){
        $query = "SELECT Naam, Email, Password, AccountStatus FROM Gebruiker WHERE Email=".$email.";";

        if($result = $this->connection->query($query)){
            return $result->fetch_assoc();
        }else{
            return false;
        }
    }

    /**
     * Create random string
     * @param int $length
     * @return string
     */
    function generateRandomString($length) {
        $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
        $randomString = '';
        for ($i = 0; $i < $length; $i++) {
            $randomString .= $characters[rand(0, strlen($characters) - 1)];
        }
        return $randomString;
    }

    static function check_database($post) {
        $query = "SELECT Password, AccountStatus FROM Gebruiker WHERE Email='" .trim($post['email']). "'";

        if($result = $this->connection->query($query)){

            if (password_verify($post['password'], $result['Password'])) {

                if($result['AccountStatus'] == 'Actief') {
                    $_SESSION['email']=trim($post['email']);

                    return true;

                } else {
                    alert("warning", "<b>Foutmelding! </b>Je account is nog niet geactiveerd! Check je mail.");

                    return false;
                }

            } else {
                alert("danger", "<b>Foutmelding! </b>Het e-mailadres en wachtwoord komen niet overheen!");   


                return false;
            }

        } else {

            alert("danger", "<b>Foutmelding! </b>Het opgegeven e-mailadres bestaat niet!");

            return false;
        }
    }

    /**
     * Login the user in.
     * @param $account
     * @return array|bool

     * $email = trim($account['inputLoginEmail']);
     */
    function authenticate($post){
        if (!isset($post['email']) || empty($post['email'])) {
            alert("danger", "<b>Foutmelding! </b>Vul een e-mailadres in!");

        } else if (!filter_var(trim($post['email']), FILTER_VALIDATE_EMAIL)) {
            alert("danger", "<b>Foutmelding! </b>Ongeldig e-mailadres!");

        } else if (!isset($post['password']) || empty($post['password'])) {
            alert("danger", "<b>Foutmelding! </b>Vul een wachtwoord in!");

        } else if (check_database($post)) {
            loadpage('profile.php');
        }
    }

    function __destruct(){
        $this->connection->close();
    }
}

91

} else if (check_database($post)) {

我尝试了很多东西,但我找不到问题。希望有人能找到它:)

2 个答案:

答案 0 :(得分:0)

以不同方式调用您的会员功能。您似乎知道您使用$this作为“普通”方法(如__destruct()所示。对于静态成员,请参考the class name

if (AccountController::check_database($post)) {
   ...
}

或者在引用同一类中的方法时使用self

if (self::check_database($post)) {
   ...
}

答案 1 :(得分:0)

您已将check_database函数定义为static。因此,你必须自己称呼它。

像这样:

self::check_database($post)