您的位置:首页 > Web前端 > JavaScript

PHP在不同页面间传递Json数据示例代码

2013-06-08 00:00 633 查看
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格式。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: