Request验证价格

现在只知道有一个验证数值的numeric

怎么样验证只有二位小数的呢?

JellyBool

你可以看看这个,不知道满足你的需求不 http://php.net/manual/en/function.money-format.php

justtest
return is_numeric($formatStr) && 1 === substr_count($formatStr, '.') && 3 === strpos(strrev($formatStr), '.')
php