1.校验字符串是否是数字或者2位小数$str = '1.33'; $reg = "/^(([1-9][0-9]*)|(([0]\.\d{1,2}|[1-9][0-9]*\.\d{1,2})))$/"; $res = preg_match($reg,$str); //合格 1 不匹配 0 Base::dump($res);2.JS开发工具函数https://zhuanlan...
hello world 2020年03月21日 15:29:58