摘要:
str_to_date(date_str, '%Y-%m-%d %H:%i:%s') 替换为 substring_index(date_str, '.', 1); str_to_date(date_str, '%Y-%m-%d') 替换为 substring_index(date_str, ' ', 阅读全文
摘要:
#[https://www.cnblogs.com/shanhubei/p/17792681.html] 1. auth.php新建guards, 绑定providers 2. user模型实现 3. 设置Guard定义校验 4. AuthServiceProvider.php服务绑定 // add 阅读全文
摘要:
1. 创建service 2. 创建facade,注册别名 3. 创建provider,绑定别名和service 4. app.php注册provider 5. app.php注册alias,别名绑定facade 阅读全文
摘要:
设置临时内存: COMPOSER_MEMORY_LIMIT=-1 composer require 切换国内镜像: composer config -g repo.packagist composer https://packagist.phpcomposer.com 阅读全文
摘要:
SHOW COLUMNS FROM tbl_desc WHERE lower(Field) NOT IN ('id'); GROUP_CONCAT: group后连接同一列数据 CONCAT, CONCAT_WS: 连接不同列数据 取前3,4,5条数据: select * from t_book t 阅读全文
摘要:
轮廓: border, outline p1>p+p: p1下面的子p元素,不包含第一个 阅读全文
摘要:
git diff HEAD~1 HEAD~2 --stat(隐藏详细信息) 阅读全文
摘要:
index = (value * value) >> 28 (右移,除以2^28。记法:左移变大,是乘。右移变小,是除。) 阅读全文
摘要:
FROM_UNIXTIME(timestamp|12332132, '%Y-%m-%d')->str; UNIX_TIMESTAMP('2020-01-01 11:11:11')->timestamp|int; STR_TO_DATE(2020-01-01','%Y-%m-%d'); DATE_FO 阅读全文