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

网络编程 2021-07-05 09:49www.168986.cn编程入门
本文为大家介绍下PHP如何在不同页面间传递Json数据,具体实现如下,感兴趣的朋友可以参考下哈,希望对大家有所帮助
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格式。

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by