/**
* 是否为合法的身份证(支持15位和18位)
* @param string $card
* @return boolean
*/
function is_card($card) {
if (preg_match('/^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$/', $card) || preg_match('/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{4}$/', $card))
return true;
else
return false;
}
/**
* 是否是手机号码
* @param string $phone 手机号码
* @return boolean
*/
function is_phone($phone) {
if (strlen($phone) != 11 || !preg_match('/^1[3|4|5|8][0-9]\d{4,8}$/', $phone)) {
return false;
} else {
return true;
}
}