NoGzltk.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace app\common\command;
  3. use app\service\mobile_get\Gdian;
  4. use app\service\mobile_get\UnicomGuangZhou;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\Output;
  8. class NoGzltk extends Command{
  9. protected function configure()
  10. {
  11. $this->setName('no:gzltk')->setDescription('广州联通同步号码');
  12. }
  13. protected function execute(Input $input, Output $output)
  14. {
  15. $name='command:'.$this->getName();
  16. try {
  17. $has=redis()->get($name);
  18. if($has){
  19. //return;
  20. }
  21. redis()->set($name,time());
  22. $class=new UnicomGuangZhou();
  23. $class->selectNoK();
  24. }catch (\Exception $e){
  25. $output->error($e->getMessage());
  26. user_log('Nogzltk',[
  27. 'e'=>$e->getMessage(),
  28. 'file'=>$e->getFile(),
  29. 'line'=>$e->getLine(),
  30. 'trace'=>$e->getTrace(),
  31. ]);
  32. }
  33. redis()->del($name);
  34. }
  35. }