1

私のデータベースには、テキストフィールドがあります

"6:00 AM Registration Opens; Day of Race registration (if available), check-in, packet pick up. 7:30 AM - First Wave Start. 10:00 AM - Awards Ceremony (time is approximate)."

私がやろうとしているのは、.

@foreach($eventDetails as $info)
 <p>{{explode('.', $info->eventSchedule)}}</p>
@endforeach

私が取得し続けるエラーは

"Array to string conversion"
4

2 に答える 2

0

代わりに str_replace() を試してください:

<p>{{str_replace('.','.<br>', $info->eventSchedule)}}</p>

于 2013-06-13T21:02:49.153 に答える