TYPO3 CMS  TYPO3_6-2
StripNewLinesFilter.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Form\Filter;
3 
23 
30  public function filter($value) {
31  return str_replace(array(CRLF, LF, CR), ' ', (string)$value);
32  }
33 
34 }