gpt4 book ai didi

php - JSON 转义序列

转载 作者:行者123 更新时间:2023-11-29 02:26:54 25 4
gpt4 key购买 nike

我的 JSON 有问题,因为它显示了不需要的额外字符。"\" enter image description here


这是我用来从我的数据库中查询它的代码。

public function getPostList(){
$query = "CALL sample3()";
$result = mysql_query($query) or die(mysql_error());

while ($row = mysql_fetch_array($result)) {
$post = new Post();
$post->setId($row['id']);
$post->setBody($row['body']);
//$post->setImage($row['imgurl']);
$post->setImage("sgwebpost.atwebpages.com/". $row['imgurl']);
$post->setStamp($row['stamp']);
$postList[] = $post;
}

return array('post'=> $postList);
}

echo json_encode($handler->getPostList());

如何删除多余的字符串?非常感谢。

最佳答案

valid JSON , 当有 </script> 时很有用标签在你的回复等。但是,如果你想删除它,你可以使用 JSON_UNESCAPED_SLASHES 常量:

echo json_encode($handler->getPostList(), JSON_UNESCAPED_SLASHES);

关于php - JSON 转义序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20031710/

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