gpt4 book ai didi

php - 获取格式错误的 JSON : Unexpected '?' in mysqli_fetch_row result

转载 作者:行者123 更新时间:2023-11-29 21:35:39 25 4
gpt4 key购买 nike

我在我的表上执行此选择语句

$get_ads_by_category_query = "select name from sorvy_djcf_items where cat_id='38'";

if(mysqli_select_db($conn,'joyshopp_adds')){

$result = mysqli_query($conn, $get_ads_by_category_query);

if( mysqli_num_rows($result) > 0 ){
$row = mysqli_fetch_row($result;
echo $row[0];
}

当我执行此查询时,返回 Malformed JSON: Unexpected '?'在浏览器中你知道为什么会发生这种情况吗???

你有解决办法吗?

我也看到了这个How to convert an entire MySQL database characterset and collation to UTF-8?并尝试将数据库排序规则更改为 utf8 但没有成功...

最佳答案

使用json_encode返回JSON响应。

echo json_encode($row[0]);

关于php - 获取格式错误的 JSON : Unexpected '?' in mysqli_fetch_row result,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34934464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com