我收到来自 API 的响应,其中包含如下链接。 ['link'] => items/892320.
有几个链接,所以我循环获取所有链接。
在我看来,我只想892320在刀片中显示 URL 的最后一部分,如下所示
看法
@foreach($export_details['body']['data'] as $export_detail)
<div class="view">
<div class="time">0:{{$export_detail['duration']}}</div>
<div class="time">0:{{$export_detail['name']}}</div>
<iframe src="{{$export_detail['link']}}" width="345" height="200" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
</div>
@endforeach
控制器
public function index()
{
$response = $client->request('/users/id/items', array(), 'GET');
$results = json_decode(json_encode($response),true);
$export_details = $results;
return view('home',compact('export_details'));
}
如何仅将 url 的最后一部分显示为 iframe 源?
茅侃侃
12345678_0001