标签:文件中 config bsp ace 当前日期 version linu href OLE
<?php namespace app\crontab\command; use think\console\Command; use think\console\Input; use think\console\input\Argument; use think\console\input\Option; use think\console\Output; use think\Db; class Task extends Command { protected function configure() { $this->setName(‘task‘) ->setDescription(‘定时计划:每天生成一个日期文件‘); } protected function execute(Input $input, Output $output) { file_put_contents(time().‘.txt‘, ‘当前日期为:‘.date(‘Y-m-d‘)); } }
3.在application的command.php 文件中添加
return [ ‘app\crontab\command\Task‘, ];
标签:文件中 config bsp ace 当前日期 version linu href OLE
原文地址:https://www.cnblogs.com/dawuge/p/13185372.html