服务热线
198-9911-5815
虚拟主机域名注册-常见问题 → 虚拟主机问题 → 虚拟主机问题 | ||||
项目的运行过程中,有时候需要写一个定时任务,执行一些操作,比如定时更新缓存,备份数据等等等等。今天主要介绍一下thinkphp6.x命令编写shell脚本 在宝塔面板创建一个定时任务,写入一段简单的定时shell脚本(注意修改成自己tp6网站根目录) Path=/www/wwwroot/xxx.com cd $Path php think clear 编写自定义指令 第一步,创建一个自定义命令类文件,运行指令 php think make:command Hello hello 会生成一个app\command\Hello命令行指令类 第二步,修改app\command\Hello 中execute函数自己的逻辑代码 例如 namespace app\command; use think\console\Command; use think\console\Input; use think\console\input\Argument; use think\console\input\Option; use think\console\Output; class Hello extends Command { protected function configure() { $this->setName('hello') ->addArgument('name', Argument::OPTIONAL, "your name") ->addOption('city', null, Option::VALUE_REQUIRED, 'city name') ->setDescription('Say Hello'); } protected function execute(Input $input, Output $output) { $name = trim($input->getArgument('name')); $name = $name ?: 'thinkphp'; if ($input->hasOption('city')) { $city = PHP_EOL . 'From ' . $input->getOption('city'); } else { $city = ''; } $output->writeln("Hello," . $name . '!' . $city); } } 第三步,配置config/console.php文件 return [ 'commands' => [ 'hello' => 'app\command\Hello', ] ]; 第四步,运行hello命令 php think hello 具体请参考看云文档-自定义指令 thinkphp6.x常用的命令行 指令描述 build自动生成应用目录和文件 help帮助 list指令列表 clear清除缓存指令 run启动PHP内置服务器 version查看当前框架版本号
|
||||
>> 相关文章 | ||||
没有相关文章。 |