为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 Laravel 5.7 中使用 Cron Job 将经纬度从邮政编码更新到数据库

如何在 Laravel 5.7 中使用 Cron Job 将经纬度从邮政编码更新到数据库

PHP
至尊宝的传说 2021-06-10 18:29:31
使用作业/事件创建一个 cron 脚本,以使用注册页面上提供的邮政编码更新用户位置详细信息,如城市、州、经度、纬度等。// app/console/commands/Zipcron.phppublic function handle(){    try {        $test = new User()        $test->latitude = $latitude;        $test->longitude = $longitude;        $test->save();        return $this->info('successfully added');    } catch (exception $e) {        return $this->warning('successfully added');    }}// app/console/kernel.phpprotected function schedule(Schedule $schedule){    $schedule->command(Commands\ZipCron::class)->everyMinute()        ->appendOutputTo(storage_path('logs/scheduler.log'));}
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 115 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信