| 1 | <?php |
||
| 13 | class IDCard implements IDCardInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * 身份证数字. |
||
| 17 | * |
||
| 18 | * @var number |
||
| 19 | */ |
||
| 20 | protected $id; |
||
| 21 | |||
| 22 | public function __construct($id) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function __toString() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function isShortLength() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function getLongNumber() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * 身份证是否合法. |
||
| 59 | * |
||
| 60 | * @param string $id |
||
| 61 | */ |
||
| 62 | public static function assertValidIDCard($id) |
||
| 79 | } |