public function checkMoney($value)
{
if (!is_numeric($value)) {
return false;
}
if ($value <= 0) {
return false;
}
if (preg_match('/^[0-9]+(\.\d{1,2})?$/',$value)) {
return true;
} else {
return false;
}
}
优化
public function checkMoney($value)
{
if(is_array($value)){
foreach ($value as $v){
$this->checkMoney($v);
}
}else{
if (!is_numeric($value)) {
return $this->show('100','金额不正确');
}
if ($value <= 0) {
return $this->show('100','金额不正确');
}
if (preg_match('/^[0-9]+(\.\d{1,2})?$/',$value)) {
return true;
} else {
return $this->show('100','金额不正确');
}
}
}
版权属于:
小破孩
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论 (0)