| #1442 | // 检查URL后缀 |
| #1443 | if(substr($uri, -$url_suffix_len) == $url_suffix) { |
| #1444 | $newurl = substr($uri, 6, -$url_suffix_len); |
| #1445 | |
| #1446 | // 提取笔画数,支持URL编码的"画"字 |
| #1447 | $newurl = urldecode($newurl); |
| #1448 | |
| #1449 | preg_match('/^(\d+)画$/', $newurl, $mat); |
| #1450 | |
| #1451 | if(isset($mat[1])) { |