自动图像宽度和高度标记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动图像宽度和高度标记相关的知识,希望对你有一定的参考价值。
The lazy way to generate Xhtml-valid width and height attributes for your images. This is incredibly inefficient, though I believe (ref?) that calls to getimagesize() are cached.
<img src="path/to/mypic.jpg" <?php $a = @getimagesize("path/to/mypic.jpg"); echo $a[3]; ?> alt="My pic" />
以上是关于自动图像宽度和高度标记的主要内容,如果未能解决你的问题,请参考以下文章