remove_words() 공개 정적인 메소드

Append words to the remove list. Accepts either single words or an array of words.
public static remove_words ( $words )
예제 #1
0
파일: URLifyTest.php 프로젝트: baardev/lbtb
 function test_remove_words()
 {
     $this->assertEquals('foo-bar', URLify::filter('foo bar'));
     URLify::remove_words(array('foo', 'bar'));
     $this->assertEquals('', URLify::filter('foo bar'));
 }
예제 #2
0
 function test_remove_words_disable()
 {
     URLify::remove_words(array('foo', 'bar'));
     $this->assertEquals('foo-bar', URLify::filter('foo bar', 60, '', false, false));
 }