Model_usps_status.php 930 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. class Model_Usps extends Lin_Model {
  3. function __construct(){
  4. parent::__construct();
  5. }
  6. //异常状态
  7. protected $one_arr = [
  8. 'out for delivery','processing exception','was returned','delivery exception','addressee unknown','delivered to agent for final delivery','reminder to pick up your item','available for pickup','return to sender processed','redelivery scheduled','notice left','delivery attempted but no response at consignee address','delivery attempt could not be completed','forwarded to a third party agent','awaiting collection by the consignee','consignee has moved from the address provided','awaiting customer pickup'
  9. ];
  10. protected function statusOne($str){
  11. $str = strtolower($str);
  12. }
  13. protected function statusTwo($str){
  14. }
  15. protected function statusThree($str){
  16. }
  17. protected function statusFour($str){
  18. }
  19. protected function statusFive($str){
  20. }
  21. protected function statusSix($str){
  22. }
  23. } //end class