前几天做了个大学英语四六级成绩查询系统,一个 phprpc 版本,一个 wap 版本。它们的核心代码都是相同的。下面就是从 etang.cet 获取大学英语四六级成绩的核心代码:
- function query($examid, $examtype) {
- $examid = trim($examid);
- $examtype = trim($examtype);
- if (!is_numeric($examid)) {
- return '准考证号码必须是数字';
- }
- if (strlen($examid) != 15) {
- return '准考证号码不正确';
- }
- if ($examtype == '1') {
- if ((substr(<