Skip to content

Instantly share code, notes, and snippets.

@Edofre
Created January 31, 2016 22:21
Show Gist options
  • Save Edofre/040e8000a892bcb28f0c to your computer and use it in GitHub Desktop.
Save Edofre/040e8000a892bcb28f0c to your computer and use it in GitHub Desktop.
<?php
namespace common\components\validators;
class PriceValidator extends \yii\validators\RegularExpressionValidator
{
public $pattern = '/^[0-9]*[.,]{0,1}[0-9]{0,2}$/'; // 12,10 OR 12.10
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment