You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
namespace App\Console\Commands ;
use App\Models\Course ;
use App\Models\CourseSign ;
use App\Models\User ;
use App\Repositories\MeetRepository ;
use Illuminate\Console\Command ;
use Illuminate\Support\Facades\DB ;
class UpdatePosition extends Command
{
protected $tryTimes = 3 ;
protected $scheduleNumber = 10 ;
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'update_position {--field=} ' ;
/**
* The console command description.
*
* @var string
*/
protected $description = '更新职位信息' ;
/**
* Create a new command instance.
*
* @return void
*/
public function __construct ()
{
parent :: __construct ();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle ()
{
$field = $this -> option ( 'field' );
if ( empty ( $field )) return self :: FAILURE ;
$users = User :: get ();
foreach ( $users as $user ) {
$item = str_replace ( ', ' , ',' , $user -> $field );
$tempArray = explode ( ',' , $item );
$tempArray = array_unique ( array_filter ( $tempArray ));
$user -> $field = implode ( ',' , $tempArray );
$user -> save ();
$this -> info ( $user -> username . '-处理完成' );
}
return self :: SUCCESS ;
}
}