0

我有一个 DB 类,我在其中创建了几个函数来返回各种值。其中一个函数返回(或应该返回)一个“用户”类对象,该对象代表应用程序的登录用户。

class user {
   public $guid = '';
   public $fname = '';
   public $lname = '';

   public function __construct() {}

   public function print_option() {
         return "<option value='$this->guid'>$this->name</option>";
   }
}

在 DB 类中,我有以下 2 个功能:

public function get_user($uid) {
    $sql = '';
    $usr = new user();
    $sql = "SELECT guid, fname, lname FROM ms.users WHERE guid=?";

    if($sth = $this->conn->prepare($sql)) {
        $sth->bind_param('s', $uid);
        if($sth->execute()) {
            $sth->bind_result($usr->guid, $usr->fname, $usr->lname);
            $sth->fetch();
            print_r($usr);  // PRINTS OUT CORRECTLY
            return $usr;
        }
        else {return null;}
    }
    else {return null;}
}

public function get_practice_user_list($pguid) {
    $ret = '';
    $sql = "SELECT user_guid FROM ms.perm WHERE p_guid=?";
    if($sth = $this->conn->prepare($sql)) {
        $sth->bind_param('s', $pguid);
        if($sth->execute()) {
            $usr = new user();
            $guid = '';

            $sth->bind_result($guid);
            while($sth->fetch()) {
                print_r($guid);  // PRINTS GUID correctly
                $usr = $this->get_user($guid);
                print_r($usr);   // PRINTS NOTHING object is null so prints "error" two lines later.
                if($usr != null) $ret .= $usr->print_option();
                else print "error";
            }

            return $ret;
        }
        else {return null;}
    }
    else {return null;}
}

我只是不明白为什么“用户”对象在这种情况下没有返回。其他对 get_user 函数的调用可以正常工作并返回与该用户相关的用户类对象。

TIA

4

2 回答 2

0

我猜你的 guid 可能是一个整数,所以

    $sth->bind_param('s', $uid);

bind_param 的第一个参数应该是 'i' 而不是 's';

http://www.php.net/manual/en/mysqli-stmt.bind-param.php

于 2013-05-10T02:18:22.033 回答
0

问题出在查询上。由于代码只是循环通过一个查询 ( get_practice_user_list),然后调用该get_user函数并尝试第二个查询 MySQL 返回错误out of sync消息。当我查看它时,我能够通过fetch_all在第一个查询上执行然后循环遍历该数组来获取用户来修复它。

于 2013-05-13T17:26:47.273 回答