dssqq64884 2018-08-21 08:59
浏览 49
已采纳

PHP上未显示JSON多维数组

I make a normal API like this

header('Content-Type: application/json');
$return = array();
$conn = mysqli_connect("localhost","root","mysql","dummy");
$fetch = mysqli_query($conn,"SELECT * FROM DATA "); 
while($re=mysqli_fetch_array($fetch)){
    $return[] = $re;
}
echo json_encode($return);

And its not showing anything in my laptop

Edit :

I read some article that PHP can't send more than 1000 request, and my api have more than 1000 data. After i add WHERE id BETWEEN 1 AND 20 it works normally.

Thanks for you guys that answer my question

  • 写回答

1条回答 默认 最新

  • dongxiong1941 2018-08-21 09:05
    关注
        header('Content-Type: application/json');
        $return = array();
        $conn = mysqli_connect("localhost","root","mysql","dummy");
        $fetch = mysqli_query($conn,"SELECT * FROM `DATA`") or die(mysqli_error($conn));
        while($re=mysqli_fetch_array($fetch)){
            $return[] = $re;
        }
        echo json_encode($return);
    

    Your code works. Try to escape DATA table name like above. Tested it locally and works fine for me the only issue i can see that may cause an issue is the table name.

    Next time avoid to name your table with capital letters or with words that are mysql Keywords, or if you do, make sure to escape them using ` like i did in the above example. You will find additional info into this link

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

    报告相同问题?

    悬赏问题

    • ¥15 stm32f103串口无法正常发送接收数据
    • ¥15 如何仅使用递归法改变链表顺序
    • ¥30 频率与占空比均可调的方波发生器
    • ¥15 VB6.0中PICTUREBOX加载本地图片无法显示
    • ¥100 关于游戏app session获取的问题
    • ¥15 爬虫程序爬取TTGChina网站文章代码
    • ¥35 由于系统缓冲区空间不足或队列已满,不能执行套接字上的操作。
    • ¥15 如何用下图方法在AMESim中搭建离心泵模型
    • ¥15 C#连接服务器,请求时报Ssl/Tsl未能建立安全通道
    • ¥15 xcode15build的c++ dylib在10.15上不兼容