本文整理汇总了PHP中helpers\Url::replaceAccentedChars方法的典型用法代码示例。如果您正苦于以下问题:PHP Url::replaceAccentedChars方法的具体用法?PHP Url::replaceAccentedChars怎么用?PHP Url::replaceAccentedChars使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类helpers\Url
的用法示例。
在下文中一共展示了Url::replaceAccentedChars方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: generateUrl
/**
* Return a friendly url made from the provided string
* If the mbstring library is available, the output is the same as the js function of the same name
*
* Function by Prestashop
*
* @param string $str
* @return string
*/
public static function generateUrl($str)
{
static $allow_accented_chars = null;
$str = trim($str);
if (function_exists('mb_strtolower')) {
$str = mb_strtolower($str, 'utf-8');
}
if (!$allow_accented_chars) {
$str = Url::replaceAccentedChars($str);
}
// Remove all non-whitelist chars.
if ($allow_accented_chars) {
$str = preg_replace('/[^a-zA-Z0-9\\s\'\\:\\/\\[\\]-\\pL]/u', '', $str);
} else {
$str = preg_replace('/[^a-zA-Z0-9\\s\'\\:\\/\\[\\]-]/', '', $str);
}
$str = preg_replace('/[\\s\'\\:\\/\\[\\]-]+/', ' ', $str);
$str = str_replace(array(' ', '/'), '-', $str);
// If it was not possible to lowercase the string with mb_strtolower, we do it after the transformations.
// This way we lose fewer special chars.
if (!function_exists('mb_strtolower')) {
$str = strtolower($str);
}
return $str;
}