Laravel中str_slug()的疑问
程序员文章站
2022-04-14 11:54:21
...
str_slug()怎么才能支持中文。随即生成4位数会不会更好呢?谢谢
回复内容:
str_slug()怎么才能支持中文。随即生成4位数会不会更好呢?谢谢
正好前天我在研究这个,然后自己造了一个*,应该很符合你的要求:
https://github.com/JellyBool/...
具体的效果大概是下面这个样子:
app('translug')->translate('如何安装 Laravel'); // or Translug::translate('如何安装 Laravel');
//How to install the Laravel
app('translug')->translug('如何安装 Laravel'); // or Translug::translug('如何安装 Laravel');
//how-to-install-the-laravel
//或者你只想要 slug 的话
translug('如何安装 Laravel');
//how-to-install-the-laravel
translug('怎么理解 laravel 关联模型');
//how-to-understand-the-laravel-associated-model
//針對繁體,翻譯會有一點不一樣
translug('怎麼理解 laravel 關聯模型');
//how-to-understand-the-laravel-correlation-model
看他的实现
public static function slug($title, $separator = '-')
{
$title = static::ascii($title);
// Convert all dashes/underscores into separator
$flip = $separator == '-' ? '_' : '-';
$title = preg_replace('!['.preg_quote($flip).']+!u', $separator, $title);
// Remove all characters that are not the separator, letters, numbers, or whitespace.
$title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', mb_strtolower($title));
// Replace all separator characters and whitespace by a single separator
$title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
return trim($title, $separator);
}
源码地址:
https://github.com/laravel/fr...
推荐阅读
-
微信小程序开发中的疑问解答汇总
-
windows 中 \r\n 区别于 类unix中的\n 疑问理解(crlf回车换行)
-
Laravel 5.4中migrate报错: Specified key was too long error的解决
-
Laravel框架中的路由和控制器操作实例分析
-
windows 中 \r\n 区别于 类unix中的\n 疑问说明
-
在Laravel5中正确设置文件权限的方法
-
在 Laravel 中 “规范” 的开发短信验证码发送功能
-
Laravel中批量赋值Mass-Assignment的真正含义详解
-
在 Laravel 6 中缓存数据库查询结果的方法
-
laravel框架中控制器的创建和使用方法分析