摘要:
安装前环境检查1、首先检查自己电脑有没有安装过mysql,输入如下 rpm -qa | grep mysql 如果有则清理干净在安装,输入 whereis mysql找到文件夹目录,再把它删除。 rpm -e --nodeps mysql-xxxx2、然后检查你系统是否自带mariadb,输入如下检 阅读全文
摘要:
public function curlPost($url,$data) { $ch = curl_init(); $params[CURLOPT_URL] = $url; $params[CURLOPT_HEADER] = FALSE; $params[CURLOPT_SSL_VERIFYPEER 阅读全文
摘要:
public function form() { $this->file('file', '请选择上传文件')->hidePreview(); } 或者是 public function form() { $this->file('file', '请选择上传文件')->options(['showP 阅读全文
摘要:
开启ZIP扩展 $dir = 'bai_file/'.$date; if($dir){ $path = public_path($dir); $zip_name = public_path($dir.'/'.date('Y-n').'.zip'); $zip = null; $count = 0; 阅读全文
摘要:
Artisan::call 阅读全文
摘要:
修改配置文件.env 为redis储存 QUEUE_CONNECTION=redis 运行队列处理 php artisan queue:work 创建延迟队列任务 php artisan make:job TestOrder <?php namespace App\Jobs; use App\Mod 阅读全文
摘要:
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 阅读全文
摘要:
dd(Cookie::queue(Cookie::forget('name'))); 阅读全文
摘要:
简介 Cron 是 UNIX、SOLARIS、LINUX 下的一个十分有用的工具,通过 Cron 脚本能使计划任务定期地在系统后台自动运行。这种计划任务在 UNIX、SOLARIS、LINUX下术语为 Cron Jobs。Crontab 则是用来记录在特定时间运行的 Cron 的一个脚本文件,Cro 阅读全文