编程语言
首页 > 编程语言> > 在img src中将Php变量与String连接起来

在img src中将Php变量与String连接起来

作者:互联网

我正在使用Laravel刀片.我想将一个php变量与刀片代码中的字符串连接起来.

例如在js中:

  <img class="img-responsive" src='http://example.com/'+ user_id +'/picture?type=square';/>

如何用php变量写这个?

  <img class="img-responsive" src='http://example.com/'. {{ $user_id}} .'/picture?type=square';/>

解决方法:

你可以这样做:

<img src="http://example.com/{{ $user_id }}/picture?type=square">

要么:

<img src="{{ 'http://example.com/' . $user_id . '/picture?type=square'}}">

但是为此使用asset()帮助器总是一个好主意:

<img src="{{ asset($userId . '/picture?type=square') }}">

标签:laravel-blade,php,laravel,image,concatenation
来源: https://codeday.me/bug/20190727/1550295.html