這是我得到的結果,而我試圖以JSON格式編碼字符串。我想要的網址應該是這樣的:http://ipaddress/Up/user_images/549279.jpg
JSON字符串與圖像url或JSON格式的url編碼
結果:
{ 「結果」:[{ 「ID」: 「42」, 「名」:「HTTP:// IP地址/上/ user_images/380289.jpg 「},{」 ID 「:」 43" , 「姓名」: 「HTTP://IPADDRESS/Up/user_images/995062.jpg」},{ 「ID」: 「44」, 「姓名」 :「http://IPADDRESS/Up/user_images/171544.jpg」},{「id」:「41」,「name」:「http://IPADDRESS/Up/user_images/549279.jpg」}]}
警告:json_decode()預計參數1是串,陣列中的C中給出:\ XAMPP \ htdocs中\ JSN \ PHP_Scripts \上線getAllEmp.php 26
//creating a blank array
$result = array();
$r1 = array();
//looping through all the records fetched
while ($row = mysqli_fetch_array($r)){
//Pushing name and id in the blank array created
array_push($result,array(
"id"=>$row['userID'],
"name"=>$ur.$row['userPic'],
));
}
//Displaying the array in json format
echo json_encode(array('result'=>$result));
$r1= json_decode($result, true);
echo ($r1);
// echo json_decode(array("result"=>$r1));
mysqli_close($con);
http://stackoverflow.com/questions/4319105/remove-trailing-slash-from-string-php指這個,這將有助於 – Anjali