将原始超链接转换为img

时间:2019-05-01 11:57:50

标签: php

       <div class="listing_element info_pro">
        <p class="pro_title">Country</p>
        <div class="sub_text text_small pro_text"><?php echo countryFlag($user['country']); ?></div>

    </div>

使用上面的代码,我试图将“国家/地区”标志添加到个人资料页面中,我以某种方式成功完成,但是代码显示了标志的路径。我想将其显示为图像。

Screen Shot

1 个答案:

答案 0 :(得分:0)

<img>标记与src一起使用

<div class="sub_text text_small pro_text"><img src="<?php echo countryFlag($user['country']); ?>" height="50" width="50"></div>