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.zhihu.com/p/113385396?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io