| #265 | $rest = trim($u_arr[1], '/'); |
| #266 | $rest_arr = $rest ? explode('/', $rest) : array(); |
| #267 | |
| #268 | // 第一个段必须是页码 |
| #269 | if(isset($rest_arr[0]) && $this->integer_check($rest_arr[0])){ |
| #270 | $_GET['page'] = $rest_arr[0]; |
| #271 | array_shift($rest_arr); |
| #272 | }else{ |
| #273 | core::error404(); |
| #274 | } |