javascript-3 数字和日期

参考: mozilla JavaScript ECMAScript 6入门 JavaScript 秘密花园 数字 在 JavaScript 里面,数字都是双精度浮点类型的(也就是说一个数字只能在 -(2^53^ -1) 和 2^53^ -1之间)。没有特定的整型数据类型。除了能

javascript-2 函数

参考: mozilla JavaScript ECMAScript 6入门 JavaScript 秘密花园 作用域和函数堆栈(Scope and Function stack)递归(recursion) 命名冲突 当同一个闭包作用域下两个参数或者变

javascript-1 语法和数据类型

系统学一遍javascript 参考: mozilla JavaScript ECMAScript 6入门 JavaScript 秘密花园 声明 JavaScript有三种声明。 var 声明一个变量,可选择将其初始化为一个值。 let 声

apache Authorization headers

来源于stackoverflow Various Apache modules will strip the Authorization header, usually for “security reasons”. They all have different obscure settings you can tweak to overrule this behaviour, but you’ll need to determine exactly which module is to blame. You can work around this issue by passing the header directly to PHP via the env: SetEnvIf Authorization

try redis-a brief tutorial

Tutorial Redis is what is called a key-value store, often referred to as a NoSQL database. Redis是一种key-value存储,经常被称为NOSQL。 SET和GET 1 2 3 4 > set server:name "fido" OK > get server:name "fido" MSE