예제 #1
0
파일: Stopwords.php 프로젝트: slkxmail/App
 public function filter($value)
 {
     return $this->_getStopwords()->process(parent::filter($value));
 }
예제 #2
0
파일: Stem.php 프로젝트: meniam/model
 public function filter($value)
 {
     $value = preg_replace('#-#is', ' ', parent::filter($value));
     return self::process($value, false);
 }