-
Dependency Manager for PHP Dependency !== packages ???查看全部
-
Maven : Apache Maven is a software project management and comprehension tool. https://maven.apache.org/ NPM CocoaPods : CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. https://cocoapods.org/ PEAR : PEAR - PHP Extension and Application Repository https://pear.php.net/ Composer查看全部
-
Composer : Dependency Manager for PHP https://getcomposer.org/ https://github.com/composer/composer https://getcomposer.org/doc/查看全部
-
student表查看全部
-
发送模板邮件 Mail::send('邮件模板视图',['传递模板使用的参数'],function($message){ $message->to('a@qq.com')->subject('subject'); });查看全部
-
发送纯文本邮件 配置mail.php Mail::raw('邮件内容',function($message){ $message->from('youxiang@qq.com','邮件标题'); $message->subject('邮件主题'); $message->to('towho@163.com');//发送给谁 });查看全部
-
Storage::disk(参数)->put($filename,file_get_contents($realPath)) /* 参数为在config/filesyetems.php中所调用的磁盘; 这样可以实现在上传到不同的目录中 */查看全部
-
debug: abort('404') 系统抛出自定义错误页面:abort('自定页面文件名'),在errors文件夹下面; 如果是路由没定义,则自动在errors下找到404页面代替 日志: single: Log::info('可以是数组和字符串'),数组将按照json写入日志中 daily : 日志文件命名已日期命名查看全部
-
在config/filesyetems.php设置上传磁盘 Storage::disk('uploads')->put($filename,file_get_contents($realPath))上传到指定文件夹查看全部
-
larval查看全部
-
1、php artisan queue:table php artisan migrate 2、php artisan make:jobs 任务类名 3、$this->dispatch(new 任务类对) 4、php artisan queue:listen 5、php artisan queue:failed-table php artisan migrate 查看php artisan queue:failed 再次执行php artisan queue:retry(id) 全部执行 php artisan queue:retry all 删除某个php artisan queue:forget [id] 删除全部 phpartisan queue:flush查看全部
-
日志级别:emergency alert critical error warning notice info debug Log::info("User failed to login",["id"=>$user->id])传递的变量将序列化成字符串格式存放:User failed to login{id:"number"}查看全部
-
系统抛出自定义错误页面:abort('自定页面文件名'),在errors文件夹下面; 如果是路由没定义,则自动在errors下找到404页面代替查看全部
-
//纯文本 Mail::raw('邮件内容",function($message){ $message->from("发件地址","发件人"); $message->subject("邮件主题"); $message->to("收件地址","收件人") }) //自定义视图 Mail::send("视图文件",[变量名=>字符/数组/对象],function($m)use(外部变量){ $message->from("发件地址","发件人"); $message->subject("邮件主题"); $message->to("收件地址","收件人"); });查看全部
-
Storage::disk('uploads')->put($filename,file_get_contents($realPath))上传到指定文件夹查看全部
举报
0/150
提交
取消