示例#1
0
文件: Digits.php 项目: onlime/DMS
 /**
  * {@inheritDoc}
  */
 public function applyFilter($value)
 {
     //Check for Whitespace support
     $whitespaceChar = $this->allowWhitespace ? " " : "";
     $this->unicodePattern = '/[^\\p{N}' . $whitespaceChar . ']/';
     $this->pattern = '/[^0-9' . $whitespaceChar . ']/';
     return parent::applyFilter($value);
 }