文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

php中xml转json格式如何转换

2023-06-15 03:52

关注

这篇文章主要介绍php中xml转json格式如何转换,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

php xml转json格式的方法:首先创建一个PHP示例文件;然后通过“function xmlToArray($xml, $options = array()){...}”方法将一个xml文件的数据转换为Json格式数据即可。

本文操作环境:windows7系统、PHP7.1版,DELL G3电脑

PHP XML 与 JSON 相互转换

XML 转 JSON

以下代码演示了如何将一个 xml 文件的数据转换为 Json 格式数据:

function xmlToArray($xml, $options = array()) {    $defaults = array(        'namespaceSeparator' => ':',//you may want this to be something other than a colon        'attributePrefix' => '@',   //to distinguish between attributes and nodes with the same name        'alwaysArray' => array(),   //array of xml tag names which should always become arrays        'autoArray' => true,        //only create arrays for tags which appear more than once        'textContent' => '$',       //key used for the text content of elements        'autoText' => true,         //skip textContent key if node has no attributes or child nodes        'keySearch' => false,       //optional search and replace on tag and attribute names        'keyReplace' => false       //replace values for above search values (as passed to str_replace())    );    $options = array_merge($defaults, $options);    $namespaces = $xml->getDocNamespaces();    $namespaces[''] = null; //add base (empty) namespace     //get attributes from all namespaces    $attributesArray = array();    foreach ($namespaces as $prefix => $namespace) {        foreach ($xml->attributes($namespace) as $attributeName => $attribute) {            //replace characters in attribute name            if ($options['keySearch']) $attributeName =                    str_replace($options['keySearch'], $options['keyReplace'], $attributeName);            $attributeKey = $options['attributePrefix']                    . ($prefix ? $prefix . $options['namespaceSeparator'] : '')                    . $attributeName;            $attributesArray[$attributeKey] = (string)$attribute;        }    }     //get child nodes from all namespaces    $tagsArray = array();    foreach ($namespaces as $prefix => $namespace) {        foreach ($xml->children($namespace) as $childXml) {            //recurse into child nodes            $childArray = xmlToArray($childXml, $options);            list($childTagName, $childProperties) = each($childArray);             //replace characters in tag name            if ($options['keySearch']) $childTagName =                    str_replace($options['keySearch'], $options['keyReplace'], $childTagName);            //add namespace prefix, if any            if ($prefix) $childTagName = $prefix . $options['namespaceSeparator'] . $childTagName;             if (!isset($tagsArray[$childTagName])) {                //only entry with this key                //test if tags of this type should always be arrays, no matter the element count                $tagsArray[$childTagName] =                        in_array($childTagName, $options['alwaysArray']) || !$options['autoArray']                        ? array($childProperties) : $childProperties;            } elseif (                is_array($tagsArray[$childTagName]) && array_keys($tagsArray[$childTagName])                === range(0, count($tagsArray[$childTagName]) - 1)            ) {                //key already exists and is integer indexed array                $tagsArray[$childTagName][] = $childProperties;            } else {                //key exists so convert to integer indexed array with previous value in position 0                $tagsArray[$childTagName] = array($tagsArray[$childTagName], $childProperties);            }        }    }     //get text content of node    $textContentArray = array();    $plainText = trim((string)$xml);    if ($plainText !== '') $textContentArray[$options['textContent']] = $plainText;     //stick it all together    $propertiesArray = !$options['autoText'] || $attributesArray || $tagsArray || ($plainText === '')            ? array_merge($attributesArray, $tagsArray, $textContentArray) : $plainText;     //return node as array    return array(        $xml->getName() => $propertiesArray    );}

使用实例

$xmlNode = simplexml_load_file('example.xml');$arrayData = xmlToArray($xmlNode);echo json_encode($arrayData);JSON 转 XML以下代码将 JSON 数据格式作为 XML 输出:<?php$json = stream_get_contents(STDIN);$data = @json_decode($json, false);if (!is_array($data) && !is_object($data)) {    echo 'ERROR: Invalid JSON given' . PHP_EOL;    exit(1);}class Exporter{    private $root = 'document';    private $indentation = '    ';    // TODO: private $this->addtypes = false; // type="string|int|float|array|null|bool"    public function export($data)    {        $data = array($this->root => $data);        echo '<?xml version="1.0" encoding="UTF-8">';        $this->recurse($data, 0);        echo PHP_EOL;    }    private function recurse($data, $level)    {        $indent = str_repeat($this->indentation, $level);        foreach ($data as $key => $value) {            echo PHP_EOL . $indent . '<' . $key;            if ($value === null) {                echo ' />';            } else {                echo '>';                if (is_array($value)) {                    if ($value) {                        $temporary = $this->getArrayName($key);                        foreach ($value as $entry) {                            $this->recurse(array($temporary => $entry), $level + 1);                        }                        echo PHP_EOL . $indent;                    }                } else if (is_object($value)) {                    if ($value) {                        $this->recurse($value, $level + 1);                        echo PHP_EOL . $indent;                    }                } else {                    if (is_bool($value)) {                        $value = $value ? 'true' : 'false';                    }                    echo $this->escape($value);                }                echo '</' . $key . '>';            }        }    }    private function escape($value)    {        // TODO:        return $value;    }    private function getArrayName($parentName)    {        // TODO: special namding for tag names within arrays        return $parentName;    }}$exporter = new Exporter();$exporter->export($data);

php是什么语言

php,一个嵌套的缩写名称,是英文超级文本预处理语言(PHP:Hypertext Preprocessor)的缩写。PHP 是一种 HTML 内嵌式的语言,PHP与微软的ASP颇有几分相似,都是一种在服务器端执行的嵌入HTML文档的脚本语言,语言的风格有类似于C语言,现在被很多的网站编程人员广泛的运用。

以上是“php中xml转json格式如何转换”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯