gettest.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?id=100&value=$jsonstr";
$html = file_get_contents($url);
echo $html;
?>
get.php文件如下:
复制代码 代码如下:
<?php
$x = json_decode(stripslashes ($_GET["value"]), true);
echo urldecode($x["name"]);
echo urldecode($x["pass"]);
?>
在IE中输入:http://127.0.0.1:8080/gettest.php
注意:gettest.php,get.php文件的格式utf-8格式。
最后
以上就是感性楼房最近收集整理的关于PHP在不同页面间传递Json数据示例代码的全部内容,更多相关PHP在不同页面间传递Json数据示例代码内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复