hxsen/xml2array

xml数据转换成array插件

1.0.2 2021-11-29 03:33 UTC

This package is auto-updated.

Last update: 2024-03-29 04:52:07 UTC


README

一、升级xml数据转换json插件

本插件基于 tamlyn/xml2json 的二次开发。 使其能更好的兼容laravel的框架。

感谢tamlyn团队的开源支持

使用示例如下:

    $xml = '<b>hello world</b>';

    $result = app('xmlTransform')->xmlToArray($xml);

二、提供了一个正则方式解析xml的方法

使用示例如下:

    $xml = '<b>hello world</b>';

    $result = app('xmlTransform')->xmlToArrayPreg($xml);