如果选择超过20行数据,PHP json_encode函数不返回任何对象

时间:2018-01-11 09:04:02

标签: php mysql mysqli

包括" connectdb.php&#34 ;;

$data = array();
$query = "select * from customer limit 5";
$result = $dbhandle -> query($query);


if($result->num_rows > 0)
{
    while($row = $result -> fetch_assoc())
    {
        $data[] = $row;
    }
}

echo json_encode($data);

我试图限制为20行并且它可以工作但是当它超过20行数据时它不会返回任何内容。

以下是我在select语句中限制为5的结果。

Click here to see results (image)

0 个答案:

没有答案