Laravel 8 Str::padLeft() {#collection-method}
2021-07-19 10:28 更新
Str::padLeft
方法包装了 PHP 的 str_pad
函数,在指定字符串的左侧填充上另一字符串:
use Illuminate\Support\Str;
$padded = Str::padLeft('James', 10, '-=');
// '-=-=-James'
$padded = Str::padLeft('James', 10);
// ' James'
以上内容是否对您有帮助:
更多建议: