-2

我正在研究网络服务。我正在发送图像 url 作为响应,但它的格式不正确。我需要像这样的输出:“模板”:“http://localhost/restaurant/admin/images2.jpg”

我的代码是

header('Content-Type: application/json');
include("admin/common/connection.php");
$userId= $_GET['user']; 
if(isset($userId))
{
$select="select * from menu_template_background where user_id='".$userId."'";
$query= mysql_query($select);
$fetch_row= mysql_fetch_array($query);
$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$str= strripos($url , "/");
$sub=substr($url,$str);
$replace=str_ireplace($sub,"",$url);

$template=$replace."/admin/".$fetch_row1['template_url'];
$fetchmenuDesign= array("template"=>$template);


echo $menuDesign[]=json_encode($fetchmenuDesign);

}

当我试图点击图片网址时,它不起作用。如果我的代码有问题,请帮助我。

4

1 回答 1

1

json_encode默认情况下,PHP 会转义斜杠。这是完全有效的 JSON。

您可以通过这样做来覆盖它(在 PHP 5.4+ 中),json_encode($stuff, JSON_UNESCAPED_SLASHES)但这确实不是必需的。

于 2013-10-22T16:22:23.767 回答