hxsen/xml2array

将xml数据转换为array的插件

1.0.2 2021-11-29 03:33 UTC

This package is auto-updated.

Last update: 2024-09-29 06:20:22 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);