0

我正在尝试一些从我的数据库中检索数据的方法。我创建了一个抽象类(ppdao),在这个类中,我有一个函数可以根据表名构建选择查询并将结果转换为对象。

对于每个表,我制作一个小文件,如下所示:

class user extends ppdao{

public $table = 'user';    

public function __set ( $name, $value ){   
    $this->$name = $value;
}

public function __get ( $name ){
    return $this->$name;
}

假设我想要一个数组中的所有用户对象,我使用我的 ppdao 类中的以下函数:

public static function get_ar_obj( $arWhere = array() , $arWhereWay = array(), $order = null ){                
    $class = get_called_class();

    $obj = new $class();       
    $sql = "SELECT * FROM ".$obj->table. $obj->arWheretoString($arWhere);
    $res = mysqli_conn::getinstance()->query($sql)->all_assoc();         
    return $obj->createObjects($res);
}

这一切正常,它给了我想要的结果。

现在我将 __get 函数更改为:

public function __get ( $name ){        
        switch ($name){
        case 'oAlbums':
             return $this->oAlbums = albums::get_ar_obj($arWhere = array('user_id' => $this->id) );
        break;

        default:
        return $this->$name;
        break;
}

我想我想获取用户拥有的所有专辑,在专辑表中有一个名为 user_id 的字段,所以我想我会像这样将 m 链接在一起。

现在,当我这样调用专辑类时:

$userobject->oAlbums

get_call_class() 仍在使用用户类名称而不是被调用的专辑类,因此它创建了一个类似的查询

SELECT * FROM user WHERE user_id = 63

And it should be SELECT * FROM album WHERE user_id = 63

任何人都知道如何让这个工作?


对不起,它不是使用 get_call_class 创建查询,而是使用公共 $table 。现在通过将其更改为 get_call_class 变量使其工作

这是结果:

$arUser = user::get_ar_obj( $arWhere = array('id' => 1));
$oUser = $arUser[0];

echo '<pre>';
    print_r($oUser->oAlbums);
echo '</pre>';

输出:

Array
(
    [0] => album Object
        (
            [table] => album
            [data:ppdao:private] => 
            [className:ppdao:private] => album
            [id] => 2
            [name] => My new album 1
            [slug] => my-new-album-1
            [user_id] => 1
            [views] => 0
            [datecreated] => 2013/03/23 16:00:43
            [location] => Muaha
        )
4

1 回答 1

0

你看过static关键字吗?它适用于 PHP5 >= 5.3

public static function get_ar_obj( $arWhere = array() , $arWhereWay = array(), $order = null ){                
    $obj = new static();       

    $sql = "SELECT * FROM ".$obj->table. $obj->arWheretoString($arWhere);
    $res = mysqli_conn::getinstance()->query($sql)->all_assoc();         
    return $obj->createObjects($res);
}
于 2013-04-21T21:22:20.877 回答