URLify::remove_words PHP Метод

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

Append words to the remove list. Accepts either single words or an array of words.
public static remove_words ( $words )
    public static function remove_words($words)
    {
        $words = is_array($words) ? $words : array($words);
        self::$remove_list = array_merge(self::$remove_list, $words);
    }

Usage Example

Пример #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'));
 }
All Usage Examples Of URLify::remove_words