PHP の異なるページ間で json を渡す際の問題
gettest.php:
$value["name"]= urlencode("myname");
$value["pass"]= urlencode("pass888");
$value["年齢"]=30;
$js_value = json_encode($value);
$url="http://127.0.0.1:8080/get.php?id=100&value=$js_value";
$html = ファイル_get_contents($url);
echo $html;
?>
get.php:
$x = json_decode(urldecode($_GET["value"]));
エコー $x;
?>
IE で実行: http://127.0.0.1:8080/gettest.php
実行後に得られるものは空白です。json データを出力できるはずです。
PHP