greencape/xml-converter
最新稳定版本:2.1.0
Composer 安装命令:
composer require greencape/xml-converter
包简介
A PHP XML parser and compiler that provides an easy way to convert XML into native PHP arrays and back again. No dependencies on external libraries or extensions.
README 文档
README
A PHP XML parser class that provides an easy way to convert XML into native PHP arrays and back again. It has no dependencies on any external libraries or extensions bundled with PHP. The entire parser is concisely written in PHP.
This project is actively maintained. It is used in our production code. If you spot an issue, please let us know through the Issues section on our Github project page: https://github.com/greencape/xml-converter/issues
In short, this project makes sense for those who want to simplify their PHP install and use, have a need for a simple XML parser, but don't much care about speed.
Requirements
PHP 7.2+
Installation
Composer
Simply add a dependency on greencape/xml-converter to your project's composer.json file if you use
Composer to manage the dependencies of your project. Here is a minimal example of a
composer.json file that just defines a dependency on XML Converter:
{
"require": {
"greencape/xml-converter": "*@dev"
}
}
For a system-wide installation via Composer, you can run:
$ composer global require 'greencape/xml-converter=*'
Make sure you have ~/.composer/vendor/bin/ in your path.
Usage Examples
XML String to PHP Array
<?php $xml = new \GreenCape\Xml\Converter('<?xml version="1.0" encoding="ISO-8859-1"?> <breakfast_menu> <food> <name>Waffles</name> </food> </breakfast_menu>'); var_dump($xml->data);
XML File to PHP Array
<?php $xml = new \GreenCape\Xml\Converter('some_xml_file.xml'); var_dump($xml->data);
PHP Array to XML String
<?php $xml = new \GreenCape\Xml\Converter(array( 'breakfast_menu' => array( array( 'food' => array( 'name' => 'Waffles' ) ) ) )); echo $xml;
统计信息
- 总下载量: 53.56k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-08-03