首页 > 解决方案 > 如何在 Laravel 中使用条带格式化 URL?

问题描述

我想从此更改 URL 格式:

http://127.0.0.1:8000/news/4123/news today in the sea

至 :

http://127.0.0.1:8000/news/4123/news-today-in-the-sea

如何在 Laravel 中更改它?

标签: phplaravelurl

解决方案


laravel中有一个助手str_slug()

$string = str_slug("news today in the sea", "-");
//$string : "news-today-in-the-sea"

推荐阅读