我已經擴展了PHP的mysqli
類,它工作正常。但是,如何在查詢時讓它返回一個自定義結果對象(或者一個用於插入/更新/刪除等的布爾值)?擴展mysqli_result
namespace MyApp;
class MySQLi extends \mysqli {
public function query($query, $resultmode = null) {
// This needs to return a MySQLiResult or a boolean
}
}
class MySQLiResult extends \mysqli_result {
}
這樣做我可以返回一個MySQLiResult對象,但我無法弄清楚如何返回非一個布爾值,選擇基於查詢:
public function query($query, $resultmode = null) {
$this->real_query($query);
return new MySQLiResult($this);
}
更新:
這是我最終使用的:
class MySQLi extends \mysqli {
public function query($query, $resultmode = null) {
$result = parent::query($query, $resultmode);
return is_bool($result) ? $result : new MySQLiResult($result);
}
}
class MySQLiResult {
private $result;
public function __construct(mysqli_result $result) {
$this->result = $result;
}
public function __call($name, $arguments) {
return call_user_func_array(array($this->result, $name), $arguments);
}
public function __set($name, $value) {
$this->result->$name = $value;
}
public function __get($name) {
return $this->result->$name;
}
}
真,我試圖避免這樣做,雖然。 – Petah 2011-06-01 01:49:27
@Petah你仍然可以擴展'mysqli_result',但是如果沒有先得到一個正常的結果然後再適應它,我就無法看到返回你的類。 – Phil 2011-06-01 01:55:12
那麼你可以,如果你使用'$ this-> real_query($ query);返回新的MySQLiResult($ this);'但是不會爲非基於選擇的查詢返回布爾值。 – Petah 2011-06-01 02:02:49