gpt4 book ai didi

php - 查询问题-php/json

转载 作者:太空宇宙 更新时间:2023-11-03 11:14:33 25 4
gpt4 key购买 nike

我有这段代码,输出是:{"round (avg (salary), 0)":"1750"}

function tableOne() {

$query = mysql_query("select round (avg (salary), 0) from worker, formation_area where id_formation_area=1") or die(mysql_error());
$row = mysql_fetch_assoc($query);
$result = $row;

echo json_encode($result);
}

tableOne();

?>

但我需要这样的东西:{1750}。

有什么帮助吗?

最佳答案

试试这个:

function tableOne() {

$query = mysql_query("select round(avg (salary), 0) as `round_avg` from worker, formation_area where id_formation_area=1") or die(mysql_error());
$row = mysql_fetch_assoc($query);
$result = $row['round_avg'];

echo json_encode($result);
}

tableOne();

记住 json 需要一个 something: something_else 所以你可能会在这里得到一个错误,因为现在没有数组被编码

关于php - 查询问题-php/json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6049308/

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