欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php json接口转化为数组 生成xml接口 php 解析json php php json decod

程序员文章站 2022-05-19 14:58:08
...
第一步:得到一个json接口,可通过一个url地址获得
第二步:通过file_get_contents取到该json串
第三步:将json格式的字符串(对象)转化为数组形式,
json_decode(json,true)json 待解码的json string字符串
当参数二为true 则结果返回的是array
第四步:foreach遍历数组成xml类型的接口
//header('content-type:application/json');$url = 'http://zphteach.com/zph/8wei/json/json.php';//拿到url地址$file = file_get_contents($url); //采集到地址的内容//echo $file;$json = json_decode($file,true);
//print_r($json) ;die;
header('content-type:application/xml'); //xml头部echo'';
echo''; //标签名对应使用foreach ($jsonas$key => $value) {
echo".$key.">";
foreach ($valueas$k => $v) {
echo".$k.">";
$val = str_replace("'", "'", $v); //字符串替换成xml能够解析的$val = str_replace(", "<", $v);
echo$val;
echo"".$k.">";
}
echo"".$key.">";
}
echo'';

url地址得到的内容如下:

[{"name":"zhangsan's","sex":"man"},{"name":"lisi,"sex":"woman"}]
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了php json接口转化为数组 生成xml接口,包括了json,php方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

相关标签: json php