首頁  >  文章  >  後端開發  >  PHP在不同页面间传递Json数据示例_PHP教程

PHP在不同页面间传递Json数据示例_PHP教程

WBOY
WBOY原創
2016-07-14 10:11:35798瀏覽

gettest.php文件:

 $value["name"]= urlencode("我的姓名");
 $value["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"]);
 echo urldecode($x["pass"]);
?>

 

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477326.htmlTechArticlegettest.php文件: ?php $value[name]= urlencode(我的姓名); $value[pass]= urlencode(pass888); $value[age]=30; $jsonstr =json_encode($value); $url=http://127.0.0.1:8080/get.php...
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn