文件名称:Laravel-CleanTempFiles:使用 Laravel 命令删除临时文件的命令
文件大小:11KB
文件格式:ZIP
更新时间:2024-07-13 21:17:43
PHP
Laravel-CleanTempFiles 使用 Laravel 命令删除临时文件 从控制台创建命令: php artisan command:make cleanTmp 这将创建文件 app/commands/cleanTmp.php 上火功能贴: public function fire () { $ this -> info ( 'Deleting all temp files' ); //Clean before X hours $ saveHours = 2 ; //Get timestamp - $saveHours $ hour_limit = new DateTime ( 'now' ); $ hour_limit -> modify ( '-' . $ saveHours . ' hour' ); $ timestamp_lim
【文件预览】:
Laravel-CleanTempFiles-master
----.gitignore(522B)
----app()
--------start()
--------views()
--------config()
--------commands()
----LICENSE(18KB)
----README.md(2KB)