PHP(xml转成json)样例
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
<?php
$content = file_get_contents("d:\\aaa.xml");
print_r($content);
print_r("\n\n");
$xml = simplexml_load_file("d:\\aaa.xml");
if(is_object($xml))
{
foreach($xml->entry as $photo)
{
echo $photo->content;
}
}
$json = json_encode($xml,JSON_UNESCAPED_UNICODE);
print_r($json);
$content = file_get_contents("d:\\aaa.xml");
print_r($content);
print_r("\n\n");
$xml = simplexml_load_file("d:\\aaa.xml");
if(is_object($xml))
{
foreach($xml->entry as $photo)
{
echo $photo->content;
}
}
$json = json_encode($xml,JSON_UNESCAPED_UNICODE);
print_r($json);
?>
<?xml version="1.0" encoding="UTF-8"?>
<root>
<version>1199</version>
<classtype>1001002</classtype>
<classname>在线配置</classname>
<classdesc>配置描述</classdesc>
<configitem>
<roadcondition>
<open>1</open>
</roadcondition>
</configitem>
</root>
{"version":"1199","classtype":"1001002","classname":"在线配置","classdesc":"配置描述","configitem":{"roadcondition":{"open":"1"}}}
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)