97]); var_dump($result,1199); } public function index_match() { $password = "123456879_/"; //密码必须包含大小写字母/数字/符号任意两者组合 $regStr = "/^(?![0-9]+$)(?![a-z]+$)(?![A-Z]+$)(?!([^(0-9a-zA-Z)]|[\(\)])+$)([^(0-9a-zA-Z)]|[\(\)]|[a-z]|[A-Z]|[0-9]){6,16}$/"; var_dump(preg_match($regStr, $password)); } }