【发布时间】:2018-01-18 12:20:53
【问题描述】:
如何将if 条件添加到html::img 助手?如何通过if 条件向 Yii2 图像添加类?
【问题讨论】:
-
你已经尝试了什么?如果可能,请提供minimal, complete and verifiable example
标签: php yii2 frameworks
如何将if 条件添加到html::img 助手?如何通过if 条件向 Yii2 图像添加类?
【问题讨论】:
标签: php yii2 frameworks
使用三元运算符:
<?= Html::img(
'Image Location',
[
'class' => (condition) ? 'class-true' : 'class-false',
'alt' => 'Image',
]
) ?>
【讨论】: