gettest.php ファイル:
コードをコピー コードは次のとおりです:
$value["name"]= urlencode("my name"); pass" ]= urlencode("pass888");
$value["age"]=30;
$jsonstr =json_encode($value);
$url="http://127.0.0.1:8080/get.php ?id =100&value=$jsonstr";
$html = file_get_contents($url);
echo $html;
?>
get.php ファイルは次のとおりです:
コードをコピー コードは次のとおりです:
$x = json_decode(stripslashes ($_GET["value"]), true);
echo urldecode($x["name"]); x["pass"]) ;
?>
IE で入力します: http://127.0.0.1:8080/gettest.php
注:
gettest.php、get.php ファイル形式は utf- 8フォーマット。
http://www.bkjia.com/PHPjc/327538.html
www.bkjia.comtruehttp://www.bkjia.com/PHPjc/327538.html技術記事 gettest.php ファイル: 次のようにコードをコピーします。 ?php $value["name"]= urlencode("my name"); $value["pass"]= urlencode("pass888"); ]=30; $jsonstr =json_encode($value...