preg_match("/^d{15}|d{18}$/", $id)//匹配15或18位身份证号码
preg_match("/^1[34578]d{9}$/",$tel)//匹配11位手机号码
preg_match('/^([xe4-xe9][x80-xbf]{2}){2,4}$/', $name)//匹配2-4个汉字的中文姓名
preg_match("/([w-]+@[w-]+.[w-]+)/",$email)//匹配邮箱
preg_match("/(?:(?:https?|ftp)://|www.)[-a-z0-9+&@#/%?=~_|!:,.;]*[-a-z0-9+&@#/%=~_|]/i",$website)