laravel5.5版本:
http://laravelacademy.org/laravel-docs-5_5
laravel所有命令:
https://cs.laravel-china.org
composer安装包列表:
https://www.phpcomposer.com/
php中验证短信登录(用redis)
http://www.jb51.net/article/65488.htm
qq互联网址:
http://www.360doc.com/content/15/0917/00/25673652_499639845.shtml
第三方微信登录:
https://www.jianshu.com/p/9be317865c9e
第三方扣扣登录:
https://www.cnblogs.com/zzdylan/p/5922477.html
phpredis扩展对数据的一些操作:
http://blog.csdn.net/qiumen/article/details/71075908
微信公众号(laravel):
githup:
https://github.com/overtrue/laravel-wechat
https://www.cnblogs.com/zhuchenglin/p/6842840.html
详细微信文档网址:
https://www.easywechat.com/docs/master
laravel中生成二维码:
http://laravelacademy.org/post/2605.html
laravel中库的用法:
https://github.com/andersao/l5-repository
更新vendor文件时,如果报这个错误如图:
输入命令: composer update -vvv --no-scripts
laravel操作数据库:
http://laravelacademy.org/post/8060.html
数组取交集:数组的交集 array_intersect()
返回json数据状态码封装方法:return response()->json(["status"=>, "data"=>"", "message"=>""]);
将二维数组转化为一维只取值:array_column
eg:$last_names =array_column($a, 'last_name');print_r($last_names);
详细文档:
https://laravel-china.org/docs/laravel/5.5/queries#e07c86
5.5laravel开发文档:
https://laravel-china.org/docs/laravel/5.5
strrchr() 函数查找字符串在另一个字符串中最后一次出现的位置,并返回从该位置到字符串结尾的所有字符。
正则表达式讲解链接:
https://www.cnblogs.com/hellohell/p/5718319.html
注意事项: 判断或者校验应该写在前面。
response()返回信息尽量用单引号,双引号会解析。
shuffle :函数把数组中的元素按随机顺序重新排列。
array_slice: 函数在数组中根据条件取出一段值,并返回。
一些sql学习网址:
http://www.w3school.com.cn/sql/
模型定义:
http://laravelacademy.org/post/1095.html
解析字段里面数据:
在模型注入(解析数据)
二维数组去重:
$a = [];
// foreach ($result as $v) {
// if (!isset($a[$v['disease_id']])) {
// $a[$v['disease_id']] = $v;
// }
// }
// $a = array_values($a);
// return $a;
命令查看log日志:
\Log::info(__METHOD__,[$result]);
sql语句文档学习:
http://www.w3school.com.cn/sql/sql_in.asp
建临时表查询SQL语句:CREATE TEMPORARY TABLE `diag_3d_id_radio_index`
SELECT DISTINCT disease_id,disease_name,`type` FROM `diag_3d_id_radio` c
php中解决跨域问题加header:header("Access-Control-Allow-Origin: *");
http_build_query: 生成 URL-encode 之后的请求字符串。
一般的auth认证都需要放在header头请求的
网友评论