阅读(2303) (5)

Laravel 8 Str::substr()

2021-07-03 16:54:23 更新

Str::substr 方法与 php 自带的字符串 stustr 截取函数相同,例如:

use IlluminateSupportStr;

$converted = Str::substr('The Laravel Framework', 4, 7);

// Laravel