0
我有一個擴展mysqli_result
類的問題。PHP擴展mysqli_result
我想用自定義類擴展mysqli_result
類。 這裏是我的代碼:
class mysqli_result_extended extends mysqli_result {
public function GetJSON() {
blah blah...
return $json;
}
}
$db = new mysqli('localhost','root','*****','somedb');
$sql = 'SELECT * FROM students';
$result = $db->query($sql);
$result->getJSON(); //This is causing the trouble
當我運行上面的代碼,它給出了一個錯誤:
Call to undefined method mysqli_result::getJSON() in ****.php on line **
有什麼不對的代碼?