wander4747 / correios-crawler
此类展示邮政跟踪、邮编并发送邮政短信
v1.0.0
2020-05-07 23:04 UTC
Requires
- fabpot/goutte: ^4.0
- nesbot/carbon: ^2.33
This package is auto-updated.
Last update: 2024-09-08 22:12:14 UTC
README
此类展示邮政跟踪、邮编并发送邮政短信
安装
composer require wander4747/correios-crawler
使用
require __DIR__ . '/vendor/autoload.php'; use Correios\Tracking; use Correios\Zip; use Correios\Sms; //parameter: tracking code $tracking = new Tracking('PW950125025BR'); echo $tracking->find(); //parameter: address or zip $zip = new Zip('Avenida Paulista'); echo $zip->find(); //parameter: tracking code, cell sender, recipient cell $sms = new Sms('PW950125025BR','(31) 99332-6095', '(31) 99332-6096'); $sms->send();
观察
类的 Sms
应该被测试并监控其是否正常工作。如果有任何问题,请发送电子邮件至 wander.douglas14@gmail.com 或创建一个问题 😃