abaccor / php-api
此包最新版本(v1.1.0)没有提供许可证信息。
Abaccor API 消费库
v1.1.0
2022-11-29 01:53 UTC
Requires
- php: >=7.0
- ext-curl: *
- ext-json: *
This package is auto-updated.
Last update: 2024-09-29 06:14:39 UTC
README
使用 Composer 安装
$ composer require abaccor/php-api
示例 3.3
$abaccor = new \Abaccor\Abaccor('https://sandbox-api.abaccor.com/', '**********************');
$data = [/* ... */];
try{
$response = $abaccor->GenerarCfdi33($data);
}catch(AbaccorException $e){
//Ocurrió un error
}
示例 4.0
$abaccor = new \Abaccor\Abaccor('https://sandbox-api.abaccor.com/', '**********************');
$data = [/* ... */];
try{
$response = $abaccor->GenerarCfdi40($data);
}catch(AbaccorException $e){
//Ocurrió un error
}