摘要: <?php class RegularUtil { //数字 public static function number($str) { if (preg_match("/^\d*$/ ", $str)) { return TRUE; } else { return FALSE; } } } //^ 阅读全文
posted @ 2019-10-20 11:28 落华 阅读(23) 评论(0) 推荐(0) 编辑