PHP
·
发表于 5年以前
·
阅读量:8292
function isPInt(value,minLength=null,maxLength=undefined) {
if(!isNum(value)) return false;
let regexp = new RegExp(`^[1-9][0-9]${anysicIntLength(minLength,maxLength)}$`);
return regexp.test(value.toString());
}