gpt4 book ai didi

php - 在 php 中回显 JSON 数据

转载 作者:可可西里 更新时间:2023-10-31 23:56:46 27 4
gpt4 key购买 nike

我正在尝试回显一些 JSON 数据。问题是数据包含变量,但我的代码没有将变量放入字符串中。这是我的代码:

$status = $row['Status'];
$priority = $row['Priority'];
echo '{"status":"$status","priority":"$priority"}' ;

这个 php 正在回显

{"status":"$status","priority":"$priority"}

当我需要回显时

{"status":"Completed","priority":"High"}

例如。我该如何解决这个问题?

最佳答案

只需使用 json_encode功能

echo json_encode($row);

关于php - 在 php 中回显 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38183302/

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