# xmltool **Repository Path**: GuoSIC77/xmltool ## Basic Information - **Project Name**: xmltool - **Description**: PHP 解析xml工具 array2xml xml2array - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-09-22 - **Last Updated**: 2023-09-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # xmltool #### 介绍 PHP 解析xml工具 array2xml xml2array #### 使用说明 ```php $xml=" 1 22 1 姓名 2 2 3 3 "; $arr = XmlTool::xml2array($xml,["/mydata/list/item"]); var_dump($arr); echo XmlTool::array2xml($arr); ```