TYPO3 CMS  TYPO3_6-2
DigitFilter.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Form\Filter;
3 
23 
31  public function filter($value) {
32  $pattern = '/[^0-9]/';
33  return preg_replace($pattern, '', (string) $value);
34  }
35 
36 }