html - thinkPHP if标签 怎么判断图片存在不存在??
Jun 06, 2016 pm 08:18 PM
后台的新闻列表 如果新闻中没有图片 则让其不显示图片 用if标签怎么实现
<code> <td>{$i}</td> <td>{$v.title}</td> <td>{$v.type}</td> <td class="text-c"> <img src="/static/imghw/default1.png" data-src="__ROOT__/{$v.images}" class="lazy" style="max-width:90%" style="max-width:90%" alt="html - thinkPHP if标签 怎么判断图片存在不存在??" > </td> <td>{$v.dateandtime}</td></code>
回复内容:
后台的新闻列表 如果新闻中没有图片 则让其不显示图片 用if标签怎么实现
<code> <td>{$i}</td> <td>{$v.title}</td> <td>{$v.type}</td> <td class="text-c"> <img src="/static/imghw/default1.png" data-src="__ROOT__/{$v.images}" class="lazy" style="max-width:90%" style="max-width:90%" alt="html - thinkPHP if标签 怎么判断图片存在不存在??" > </td> <td>{$v.dateandtime}</td></code>
假设你的$v['images']
没有图片时为空
则判断 <if condition="$v['images'] neq '' "><img src="/static/imghw/default1.png" data-src="__ROOT__/{$v.images}" class="lazy" style="max-width:90%" style="max-width:90%" alt="html - thinkPHP if标签 怎么判断图片存在不存在??" ></if>
要是你的$v['images']
没有图片时有一个默认值(例如: '/public/index/')
则判断 <if condition="$v['images'] neq '/public/index/' "><img src="/static/imghw/default1.png" data-src="__ROOT__/{$v.images}" class="lazy" style="max-width:90%" style="max-width:90%" alt="html - thinkPHP if标签 怎么判断图片存在不存在??" ></if>
这个不用thinkPHP吧,用PHP就能判断吧?
<code><?php if(isset($v.images)&&!empty($v.images)):?> <img src="/static/imghw/default1.png" data-src="__ROOT__/{$v.images}" class="lazy" style="max-width:90%" style="max-width:90%" alt="html - thinkPHP if标签 怎么判断图片存在不存在??" > <?php endif;?></code>

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

How To Set Up Visual Studio Code (VS Code) for PHP Development
