Laravel文档阅读笔记-Laravel Str slug() Function Example
Posted IT1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel文档阅读笔记-Laravel Str slug() Function Example相关的知识,希望对你有一定的参考价值。
此篇文档对应的laravel版本为8。
使用Str的slug(),姑且翻译成锚链接符,生成URL,因为URL不能带有空格,使用slug()函数的目的就可以将空格进行替换,以前用空格连接的,变成指定字符连接。
实例代码:
<?php
namespace App\\Http\\Controllers;
use Illuminate\\Http\\Request;
use App\\Models\\User;
use Illuminate\\Support\\Str;
class UserController extends Controller
public function index()
$slug = Str::slug('Laravel 5 Framework', '-');
echo $slug;
// laravel-5-framework
对应的web.php如下:
<?php
use Illuminate\\Support\\Facades\\Route;
use App\\Http\\Controllers\\UserController;
Route::get('users', [UserController::class,'index']);
以上是关于Laravel文档阅读笔记-Laravel Str slug() Function Example的主要内容,如果未能解决你的问题,请参考以下文章
Laravel文档阅读笔记-How to use @auth and @guest directives in Laravel
Laravel文档阅读笔记-How to use @auth and @guest directives in Laravel
Laravel文档阅读笔记-Adding a Markdown editor to Laravel
Laravel文档阅读笔记-Custom Authentication Login And Registration Using Laravel 8
Laravel文档阅读笔记-Custom Authentication Login And Registration Using Laravel 8