gaarf/xml-to-php-array
Composer 安装命令:
composer require gaarf/xml-to-php-array
包简介
XML to PHP array convertor
README 文档
README
Smart tool to convert your XML to PHP array.
Install and simply use
Use Composer:
composer require gaarf/xml-to-php-array
And then package will be automatically installed to your project and you can simply call:
$resultArray = Convertor::covertToArray($xml);
Documentation
One common need when working in PHP is a way to convert an XML document into a serializable array. If you ever tried to serialize() and then unserialize() a SimpleXML or DOMDocument object, you know what I’m talking about.
Assume the following XML snippet:
<tv> <show name="Family Guy"> <dog>Brian</dog> <kid>Chris</kid> <kid>Meg</kid> </show> </tv>
There’s a quick and dirty way to do convert such a document to an array, using type casting and the JSON functions to ensure there are no exotic values that would cause problems when unserializing:
$a = json_decode(json_encode((array) Convertor::covertToArray($s)), true);
Here is the result for our sample XML, eg if we print_r($a):
Array
(
[show] => Array
(
[@attributes] => Array
(
[name] => Family Guy
)
[dog] => Brian
[kid] => Array
(
[0] => Chris
[1] => Meg
)
)
)
Pretty nifty, eh? But maybe we want to embed some HTML tags or something crazy along those lines. then we need a CDATA node…
<tv> <show name="Family Guy"> <dog>Brian</dog> <kid>Chris</kid> <kid>Meg</kid> <kid><![CDATA[<em>Stewie</em>]]></kid> </show> </tv>
The snippet of XML above would yield the following:
Array
(
[show] => Array
(
[@attributes] => Array
(
[name] => Family Guy
)
[dog] => Brian
[kid] => Array
(
[0] => Chris
[1] => Meg
[2] => Array
(
)
)
)
)
That’s not very useful. We got in trouble because the CDATA node, a SimpleXMLElement, is being cast to an array instead of a string. To handle this case while still keeping the nice @attributes notation, we need a slightly more verbose conversion function. This is my version, hereby released under a do-whatever-but-dont-sue-me license.
The result, for our Stewie snippet:
Array
(
[show] => Array
(
[@attributes] => Array
(
[name] => Family Guy
)
[dog] => Brian
[kid] => Array
(
[0] => Chris
[1] => Meg
[2] => <em>Stewie</em>
)
)
)
Victory is mine! :D
Contributions
[clh-code#1] If a node has attributes, but contains only text, then the output will be an array with both @content and @attributes keys
[reggi#4] store root element tag name in @root
[janbarasek#13] Add support for PHP 7.1 + better code style.
[janbarasek#15] Rewrite repository as Composer package.
[roland-d#18] Treat empty node as string
gaarf/xml-to-php-array 适用场景与选型建议
gaarf/xml-to-php-array 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 46.13k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 08 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 gaarf/xml-to-php-array 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 gaarf/xml-to-php-array 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 46.13k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 9
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2020-08-15