You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pdd-order-api/app/libs/tool/class.ValidateTool.php

7 lines
156 B
PHP

<?php
class ValidateTool {
public static function isPassword($value) {
return preg_match('/^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,16}$/', $value);
}
}