2016-11-05 62 views

回答

1

按照Laravel的源代碼,無論是驗證具有以下邏輯。

// For rule 'integer' 
protected function validateInteger($attribute, $value) 
{ 
    return filter_var($value, FILTER_VALIDATE_INT) !== false; 
} 

// For rule 'numeric' 
protected function validateNumeric($attribute, $value) 
{ 
    return is_numeric($value); 
} 

對於多個參考挖入Laravel的源代碼 - here >>

相關問題