上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页

2019年1月28日

chained get value from nested json

摘要: static getValueByKey(o, p, defaultValue = false) { return p.split('.').reduce((r, k) => { if (typeof r[k] !== undefined) { return r[k]; } return defau 阅读全文

posted @ 2019-01-28 10:11 冯亮 阅读(178) 评论(0) 推荐(0) 编辑

2018年11月21日

maatwebsite lost precision when export long integer data

摘要: Maatwebsite would lost precision when export long integer data, no matter string or int storaged in database. Implementing \Maatwebsite\Excel\Concerns 阅读全文

posted @ 2018-11-21 17:53 冯亮 阅读(248) 评论(0) 推荐(0) 编辑

2018年9月2日

postman with xdebug

摘要: Set the url with ?XDEBUG_SESSION_START=PHPSTORM and set a header Cookie: XDEBUG_SESSION=PHPSTORM 阅读全文

posted @ 2018-09-02 12:02 冯亮 阅读(92) 评论(0) 推荐(0) 编辑

2018年6月28日

微信access token过期

摘要: 两台服务器使用同一个微信账号(同一个app id) 时,当其中一台服务器向微信请求access token时,会造成另一台服务器的access token过期 阅读全文

posted @ 2018-06-28 16:48 冯亮 阅读(227) 评论(0) 推荐(0) 编辑

中国行政区域数据

摘要: https://github.com/modood/Administrative-divisions-of-China 阅读全文

posted @ 2018-06-28 15:22 冯亮 阅读(100) 评论(0) 推荐(0) 编辑

2018年6月8日

mysql 1215错误 外键建立失败

摘要: 在Mysql中创建数据表时,经常会遇到问题而失败,其中建立外键有很多细节需要我们去留意,主要有以下几种常见原因。 1. 两个字段的类型或者大小不严格匹配。例如,如果一个是int(10),那么外键也必须设置成int(10),而不是int(11),也不能是tinyint。另外,你还必须确定两个字段是否都 阅读全文

posted @ 2018-06-08 21:09 冯亮 阅读(203) 评论(0) 推荐(0) 编辑

2018年5月18日

将composer切换到国内镜像

摘要: composer config -g repo.packagist composer https://packagist.phpcomposer.com 阅读全文

posted @ 2018-05-18 22:50 冯亮 阅读(179) 评论(0) 推荐(0) 编辑

2018年5月7日

linux 查找删除

摘要: find -name "*.php" -exec rm -f '{}' \; 阅读全文

posted @ 2018-05-07 14:27 冯亮 阅读(82) 评论(0) 推荐(0) 编辑

2018年4月20日

国内外手机号码正则表达式

摘要: var phones = { 'ar-DZ': /^(\+?213|0)(5|6|7)\d{8}$/, 'ar-SY': /^(!?(\+?963)|0)?9\d{8}$/, 'ar-SA': /^(!?(\+?966)|0)?5\d{8}$/, 'en-US': /^(\+?1)?[2-9]\d{ 阅读全文

posted @ 2018-04-20 14:05 冯亮 阅读(365) 评论(0) 推荐(0) 编辑

2018年4月18日

git存储用户名和密码

摘要: git config --global credential.helper store 输入一次用户名和密码后,git会自动记录用户名密码 阅读全文

posted @ 2018-04-18 13:28 冯亮 阅读(151) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页

导航