如何在php中显示图标

时间:2018-09-21 10:35:56

标签: php html

当前我在前端显示文件名,但实际上我想显示下载图标而不是文件名。

所以我该如何用PHP中的某些下载图标替换$ filename。

return $strHref = "<a href ='".$downloaded_filepath."'>" . $fileName . "</a>";

2 个答案:

答案 0 :(得分:0)

对于自定义图片

return $strHref = "<a href ='".$downloaded_filepath."'><img src='imgpath'></a>";

在引导程序中

return $strHref = "<a href ='".$downloaded_filepath."'><i class='fa fa-download'></i></a>";

答案 1 :(得分:0)

对于图标,您可以使用类似以下的内容:

return $strHref = "<a href ='".$downloaded_filepath."'><span class='glyphicon glyphicon-search' aria-hidden='true'></span></a>";

对于这类图标,您可以使用引导程序(或其他任何您喜欢的东西)。


如果您希望使用图片代替图标,则可以执行以下操作:

return $strHref = "<a href ='".$downloaded_filepath."'><img src='path_to_image'></a>";


文档: