dreamproduction / phiatos-onix-parser
Onix 2.0 及以上版本的解析器,支持Phiatos格式扩展。
1.0.35
2024-09-02 08:06 UTC
Requires
- php: >=8.0
This package is auto-updated.
Last update: 2024-09-02 08:08:47 UTC
README
PHP 库,用于将XML Onix转换为PHP对象。
要求
- XML Onix 2.0 >
- PHP 8.1 >
安装
composer require bogdan-racz/phiatos-onix-parser
使用方法
$parser = new OnixParser($xmlOnix);
// 如果您希望从文件中加载XML。
$parser = new OnixParser('/var/www/xml_onix.xml', true);
// 遍历所有产品。
foreach($parser->getOnix()->getProducts() as $product);
文档
即将推出...