1
我現在寫的Android應用程序和應用程序將使用JSON(UTF-8):PHP無法讀取UFT8 JSON
http://.....xxx.php?json=%7B%22name%22%3A%22peterchan%22%2C%22phone%22%3A%2212345678%22%2C%22password%22%3A%226kxhSJM6iLB0kZ9LZGCEUQ%3S%3D%0A%22%7D
的xxx.php
是這樣的:
<?php
header("Content-Type:text/html; charset=utf-8");
ini_set('default_charset', 'utf-8');
$json = $_GET["json"];
$obj = json_decode($json);
$name = $obj -> {"name"};
$phone = $obj -> {"phone"};
$password = $obj -> {"password"};
printf($json);
?>
但它返回: Warning: printf()
:參數太少xxx.php
任何人都可以幫我嗎?請
如果你想創建一些東西,你應該使用'POST' ...和'GET'來檢索... –
我可以舉一些例子嗎?對於android 我無法找到一個工作示例與「放」JsonObject –
你需要什麼使用'printf()'? –