Laravel 第4页
王明昌阅读(2662)赞(0)
Laravel 出现"RuntimeException inEncrypter.php line 43: The only supported ciphers are AES-128-CBC and AES-256-CBC with the...
王明昌阅读(2812)赞(1)
无法保存 session(['admin'=>$res[0]]); 可以保存 \Session::put('admin',$res[0]); // 你要保存的session key \Session::save();
王明昌阅读(2166)赞(0)
缓存优化 数据库查询缓存优化 数据库字段 show COLUMNS from 'user' //查询数据表的字段 生成数据表的缓存文件 php think optimize:schema //生成的目录在runtime/schema 路由 ...
王明昌阅读(2449)赞(0)
公共专题列表 视图合成器 \View::composer('mobandizhi',function($view){ //加载 }) 使用 位置\app\Providers\AppServiceProvider.php public fun...
王明昌阅读(1797)赞(0)
搜索 elasticsearch https://www.elastic.co/cn/ https://github.com/medcl/elasticsearch-analysis-ik 文档 elasticsearch基本概念 索引in...
王明昌阅读(2610)赞(0)
服务容器 绑定(使用bind 或 singleton) public/indx.php下的 $app = require_once __DIR__.'/../bootstrap/app.php'; app.php 下(字符串绑定到对象中) ...
王明昌阅读(2021)赞(0)
laravel中文网 https://laravel-china.org/ 支持: 队列 搜索 数据库迁移 定时脚本 数据填充包 https://github.com/fzaninotto/Faker laravel思想 服务容器 服务提供...
王明昌阅读(3736)赞(0)
1.引入css,js,img等最好使用asset 使用此方式,获取的是带域名的绝对路径 <link rel='stylesheet' href="{{asset('resause/i.css')}}"/> 2.测试数据库是否连接...