如何在laravel中使用str_replace

问题描述 投票:0回答:5

如何在laravel框架中使用php函数str_replace。

我的数组键名称在表列名称上,因此键具有“_”,如名字、姓氏等。我想在刀片文件中删除这些“_”。我的要求是 .blade.php 文件中的字符串替换。

我正在尝试这个 php 代码,但它没用。

<th>{{str_replace('_', ' ', $str)}}</th>

谢谢

php laravel function laravel-4 laravel-blade
5个回答
37
投票

您使用的是哪个版本的 Laravel?

对于 laravel 5.x,使用这个

{!! str_replace('_', ' ', $str) !!}

28
投票

您可以在.blade.php文件中使用php代码

尝试这样

<th> <?=str_replace('_', ' ', $str)?> </th>

5
投票
use Illuminate\Support\Str;

$string = 'The event will take place between ? and ?';

$replaced = Str::replaceArray('?', ['8:30', '9:00'], $string);

// The event will take place between 8:30 and 9:00

刀片用

 $item = "Free-Active";
{{ Str::replaceArray('free-', [''], $item) }}

5
投票

在 Laravel 8 中你可以使用 String Helper 函数:

use Illuminate\Support\Str;

<th>{{ Str::replace('_', ' ', $str) }}</th>

2
投票

你可以用这个

<th>{{-- */ echo str_replace('_', ' ', $str); /* --}}</th>

<th>{{-- */ $data = str_replace('_', ' ', $str); /* --}} {{$data}}</th>
© www.soinside.com 2019 - 2024. All rights reserved.