摘要: 转自:https://stackoverflow.com/questions/1179874/what is the difference between bindparam and bindvalue answer 5077108 PDOStatement::bindParam 与 PDOStat 阅读全文
posted @ 2017-11-17 14:49 hopher 阅读(615) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/Wayou/p/es6_new_features.html 本文基于 "lukehoban" / " es6features " ,同时参考了大量博客资料,具体见文末引用。 ES6( "ECMAScript" 6)是即将到来的新版本JavaScr 阅读全文
posted @ 2017-11-17 09:55 hopher 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/Wayou/p/es6_new_features.html 本文基于 "lukehoban" / " es6features " ,同时参考了大量博客资料,具体见文末引用。 ES6( "ECMAScript" 6)是即将到来的新版本JavaScr 阅读全文
posted @ 2017-11-17 09:53 hopher 阅读(100) 评论(0) 推荐(0) 编辑
摘要: ``` /** * 正则Group匹配 * 匹配url中 :id 等占位符字段 */ function getMatches (string) { let matches = [] let regex = /(:[a-z_]+)/ let match = regex.exec(string) while (match !== null) { matches.push(... 阅读全文
posted @ 2017-11-17 09:12 hopher 阅读(1965) 评论(0) 推荐(0) 编辑