本文整理匯總了PHP中URLify::remove_list方法的典型用法代碼示例。如果您正苦於以下問題:PHP URLify::remove_list方法的具體用法?PHP URLify::remove_list怎麽用?PHP URLify::remove_list使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類URLify
的用法示例。
在下文中一共展示了URLify::remove_list方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: filter
public function filter($value)
{
URLify::$remove_list = array();
$value = URLify::filter($value, 60, 'de');
$value = str_replace('-', '_', $value);
return $value;
}
示例2: remove_words
/**
* Append words to the remove list. Accepts either single words
* or an array of words.
*/
public static function remove_words($words)
{
$words = is_array($words) ? $words : array($words);
self::$remove_list = array_merge(self::$remove_list, $words);
}
示例3: filter
public function filter($value)
{
URLify::$remove_list = array();
return URLify::filter($value, 60, 'de');
}