| #457 | $newurl = decrypt($mat['password']);//解密得到 cid_id |
| #458 | preg_match("/^(\d+)\_(\d+)$/i", $newurl, $mat); |
| #459 | if( isset($mat[2]) ) { |
| #460 | $_GET['cid'] = $mat[1]; |
| #461 | $_GET['id'] = $mat[2]; |
| #462 | return true; |
| #463 | } |
| #464 | }elseif( isset($mat['alias']) ) { // {alias} |
| #465 | preg_match("/^(\d+)\_(\d+)$/i", $mat['alias'], $mat2); //没有设置别名,将用 cid_id 组合 |
| #466 | if( isset($mat2[2]) ) { |