gpt4 book ai didi

php - JSON - 斜线不转义

转载 作者:行者123 更新时间:2023-12-04 04:45:34 28 4
gpt4 key购买 nike

这是我的 PHP/Json 脚本:

<?php
header('Content-type: application/json; charset=utf-8');
header("access-control-allow-origin: *");

$link = mysql_pconnect("localhost", "test", "test") or die("Could not connect");
mysql_select_db("news") or die("Could not select database");

$arr = array();

$rs = mysql_query("SELECT * FROM stories");

while($obj = mysql_fetch_object($rs)) {
$arr[] = $obj;
}
echo '{"success":true,"error":"","data":[{"schedule":'.json_encode ($arr,JSON_UNESCAPED_SLASHES).']}}';
*/
?>

JSON 显示正确;然而,尽管使用 JSON_UNESCAPED_SLASHES 撇号仍然显示,例如

这是一个考验!

什么时候应该是:
这是/是测试!

我怎样才能让它正常工作?

最佳答案

$arr = strip_slashes($arr);


$arr = str_replace("\\","", $arr);

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

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