我正在研究网络服务。我正在发送图像 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);
}
当我试图点击图片网址时,它不起作用。如果我的代码有问题,请帮助我。