03 2017 档案
摘要:1. POST请求 2. GET请求(解说如上)
阅读全文
摘要:text-transform 控制文本的大小写(只对英文起作用,对汉字无效) Example: Result:
阅读全文
摘要:clear属性:规定元素的哪一侧不允许有其他的浮动元素 Example: Result:
阅读全文
摘要:String 1. strlen($str) 返回$str字符串的长度 2. strpos($str, 子字符串) 查看子字符串是否在$str中,如果在,返回首字母当前位置。如果不在,返回false 3. addcslashes(字符串,指定的字符) 返回在指定的字符前添加反斜杠的字符串 4. ad
阅读全文
摘要:1. git fetch 获取远程的所有分支 2. 在执行 git checkout -b local-branch-name origin/remote-branch 就可以将远程分支remote-branch上的代码映射到本地命名为local-branchname 的分支上。
阅读全文