我如何使用其他网址如果我得到网址('')

时间:2016-11-11 07:30:26

标签: javascript php url

我是一个新手而且我正在写这个,但如果源上没有图像,那么我只是空白。

有人可以告诉我,如果我获得 背景图片,我怎样才能获得 /images/no-image.jpg :url();

这是我的代码:

<div class="uk-clearfix uk-position-relative">
    <div class="recipebanner">              
          <div class="recipeimg uk-position-cover" style="background-image: url(<?php echo $recipe->picture; ?>); background-size: cover; background-position: 50% 50%;"></div>
    </div>
</div>

3 个答案:

答案 0 :(得分:1)

这很简单。试试这个:

url(<?php if(file_exists($recipe->picture)) echo ($recipe->picture) else echo 'no-image.jpg'; ?>)

将正确的图像路径传递给 $ recipe_picture 变量。

答案 1 :(得分:0)

Datagridview

答案 2 :(得分:0)

对我的案例有用的答案是: 请使用三元图标background-image:url(图片)? ($ recipe-&gt;图片):'no-image.jpg';?&gt;) - @HappyCoding -thank you!

Thanxx all!