设置回声图像的样式



似乎我无法在 php 中设置我的回声图像样式。我该怎么做?谢谢:)

<a href="profile.html"><img src="data:image/jpeg;base64,'.base64_encode($row['image'] ).'" height="80px" width="80px" class="img-thumnail" style="margin-bottom:90px;"/></a>

试试这段代码

<img class="im" src="data:image/jpeg;base64,'<?php echo base64_encode($row['image'] ); ?>'" height="180px" width="180px" class="img-thumnail" style="margin-bottom:90px;"/>

最新更新