我一直在寻找这个问题的答案已经有一段时间了,但似乎以前没有人解决过这个问题。也许你们中的一些人能够并且愿意在这方面帮助我……那太好了!
我目前正在研究 mysqli 包装器,并尝试为准备好的语句实现自定义结果类,就像我已经为标准查询所做的那样!似乎结果是在 stmt 的“执行”方法中生成的,但我仍然无法理解幕后发生的事情!
有没有办法(或破解)将生成的结果指向我的结果类,而不是像常规查询那样简单的 mysqli_result ?
只是为了让您了解一下,这里是代码中的一些粘贴:
class extended_mysqli extends mysqli
{
public function __construct()
{
call_user_func_array(array(get_parent_class($this), 'mysqli'), func_get_args());
if ( $this->connect_errno )
{
throw new extended_mysqli_exception('database connection failure');
}
}
public function query ($query, $binds = array())
{
if ( empty( $binds ) )
{
if ( $this->real_query($query) )
{
if ( $this->field_count )
{
return new extended_mysqli_result($this, $query); // select, show, describe
}
else return true; // insert, update, delete
}
else return false; // fix
}
else
{
$stmt = $this->prepare($query);
if ( $stmt->bind_array($binds) )
{
return $stmt->execute() ? $stmt->get_result() : false;
}
else return false;
}
}
public function prepare($query)
{
return new extended_mysqli_stmt($this, $query);
}
// ...
}
class extended_mysqli_stmt extends mysqli_stmt
{
public function __construct($link, $query)
{
parent::__construct($link);
$this->prepare($query);
}
public function execute()
{
// what do i do here ???
}
}
class extended_mysqli_result extends mysqli_result implements countable, iterator, arrayaccess
{
public function __construct($link, $mode = MYSQLI_STORE_RESULT)
{
parent::__construct($this->link = $link, $mode);
}
// ...
}