1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace app\common\command;
- use app\service\mobile_get\Gdian;
- use app\service\mobile_get\UnicomGuangZhou;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- class NoGzltk extends Command{
- protected function configure()
- {
- $this->setName('no:gzltk')->setDescription('广州联通同步号码');
- }
- protected function execute(Input $input, Output $output)
- {
- $name='command:'.$this->getName();
- try {
- $has=redis()->get($name);
- if($has){
- //return;
- }
- redis()->set($name,time());
- $class=new UnicomGuangZhou();
- $class->selectNoK();
- }catch (\Exception $e){
- $output->error($e->getMessage());
- user_log('Nogzltk',[
- 'e'=>$e->getMessage(),
- 'file'=>$e->getFile(),
- 'line'=>$e->getLine(),
- 'trace'=>$e->getTrace(),
- ]);
- }
- redis()->del($name);
- }
- }
|