注册于:6年前 ,最后活跃于:1年前
个人签名:not i was, just i am
Ta 的动态:
白小二
在
(问答)json_encode 对有索引及没有索引编码的问题
中增加了附言:
ksort($b);
echo json_encode(array_values($b));
ksort() 升序排序
array_values() 顺序上升转为数字索引
白小二
在
nginx如何兼容伪静态跟id格式的链接
中增加了附言:
location / {
rewrite ^/(\d+)$ /home/show/index?roomnum=$1;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
增加一条重写规则,$1会自动匹配斜杠之间规则,括号代表一个完整的参数,一定能加括号,不然匹配不到参数