remove_words() публичный статический Метод

Append words to the remove list. Accepts either single words or an array of words.
public static remove_words ( $words )
Пример #1
0
 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));
 }