hristonev/brandsdistribution

安装: 37

依赖: 0

建议者: 0

安全: 0

星级: 0

分支: 0

类型:工具

dev-master 2018-08-14 08:22 UTC

This package is not auto-updated.

Last update: 2024-09-18 21:36:02 UTC


README

用法

require BASE_DIR. '/vendor/autoload.php';

use Parser\XMLReader;
$xml = new XMLReader(BASE_DIR. '/path-to-writeble-folder'); // Download and state files!
$xml->setCredentials(
    'https://www.brandsdistribution.com/restful/export/api/products.xml', // endpoint
    'username',
    'password'
);
$xml->download();
$xml->parse();
while ($node = $xml->getItem()){
    print_r($node);die; // Dump first node of collection.
}