我必須在字符串中寫json結果。打印json到字符串
這裏是我的代碼,
<!DOCTYPE html> <html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<form method="POST">
Enter Pin <input type="text" name="pinCode">
<input type="submit" name="formSubmit">
</form>
</body> </html>
<?php
if(isset($_POST['formSubmit']))
{
$input = $_POST['pinCode'];
$shortUrl=file_get_contents("https://www.whizapi.com/api/v2/util/uiin/indian-city-by-postal-code?project-app-key=<app_key>&pin=".$input);
$res = json_decode($shortUrl, true);
echo implode($res);
}
?>
目前的結果是JSON格式。我必須以字符串打印結果。例如 - {「title」:「Mr」,「name」:「sandeep」}。結果會像「先生sandeep」。這就是爲什麼我使用json_decode將json更改爲數組,但後來我無法理解如何更改字符串中的關聯數組。
在此先感謝。
json導致字符串?你實際上想要達到什麼。根據tat的輸入提供一些輸入數據和預期結果,以使我們對自己清楚 –
目前的結果是json格式。我必須以字符串打印結果。例如 - {「title」:「Mr」,「name」:「sandeep」}。結果會像「先生sandeep」 –