本文整理汇总了PHP中HHtml::image方法的典型用法代码示例。如果您正苦于以下问题:PHP HHtml::image方法的具体用法?PHP HHtml::image怎么用?PHP HHtml::image使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HHtml
的用法示例。
在下文中一共展示了HHtml::image方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: translateEmojis
/**
* Replace emojis from text to img tag
*
* @param string $text Contains the complete message
* @param string $show show smilies or remove it (for activities and notifications)
*/
public static function translateEmojis($text, $show = true)
{
$emojis = array('Ambivalent', 'Angry', 'Confused', 'Cool', 'Frown', 'Gasp', 'Grin', 'Heart', 'Hearteyes', 'Laughing', 'Naughty', 'Slant', 'Smile', 'Wink', 'Yuck');
return preg_replace_callback('@;(.*?);@', function ($hit) use(&$show, &$emojis) {
if (in_array($hit[1], $emojis)) {
if ($show) {
return HHtml::image(Yii::app()->baseUrl . '/img/emoji/' . $hit[1] . '.png', $hit[1], array('data-emoji-name' => $hit[0], 'class' => 'atwho-emoji'));
}
return '';
}
return $hit[0];
}, $text);
}