filter() 공개 메소드

todo: add "callable" type hint later.
public filter ( $cb )
예제 #1
0
 public function testFilter()
 {
     $opt = new Option('scope');
     $opt->filter(function ($val) {
         return preg_replace('#a#', 'x', $val);
     });
     $opt->setValue('aa');
     is('xx', $opt->value);
 }