阅读(2332)
赞(26)
Laravel 8 Str::substr()
2021-07-03 16:54:23 更新
Str::substr 方法与 php 自带的字符串 stustr 截取函数相同,例如:
use Illuminate\Support\Str;
$converted = Str::substr('The Laravel Framework', 4, 7);
// Laravel Str::substr 方法与 php 自带的字符串 stustr 截取函数相同,例如:
use Illuminate\Support\Str;
$converted = Str::substr('The Laravel Framework', 4, 7);
// Laravel