codecamp

Smarty:html_image函数

{html_image}

{html_image}用于生成HTML的<img>标签的 自定义函数。 如果没有提供height 和 width参数, 此函数会自动从图片文件计算出来。

参数名称类型必选参数默认值说明
filestringYesn/a图片名称/路径
heightstringNo真实图片高度图片显示高度
widthstringNo真实图片宽度图片显示宽度
basedirstringno网站根目录相对路径的起始目录
altstringno图片的说明内容
hrefstringnon/a图片上的链接地址
path_prefixstringnon/a显示路径的前缀
  • basedir设置了相对图片路径的起始目录。如果没有提供, 则使用网站根目录$_ENV['DOCUMENT_ROOT']。 如果开启了安全限制,图片文件必须放置在$secure_dir目录。 参见安全机制来了解更多。

  • href设置图片上超链接地址。如果链接地址有提供,那么 图片标签的外围会加上<a href="超链接地址"><a>的标签。

  • path_prefix可选的,设置显示路径时的前缀字符串。 当你需要给图片设置不同的服务器名时,这会很有用。

  • 其他不在上面列表中的键值对参数,会直接在输出的<img>标签中显示成 名称=值 的属性。

技术说明

{html_image}需要每次都读取硬盘上的图片,并且计算图片长宽。 除非你开启了缓存,否则一般建议是避免使用 {html_image},用回HTML的IMG标签,会有更高的性能。

Example 8.8. {html_image} 例子

{html_image file='pumpkin.jpg'}
{html_image file='/path/from/docroot/pumpkin.jpg'}
{html_image file='../path/relative/to/currdir/pumpkin.jpg'}

输出:

<img src="pumpkin.jpg" alt="" width="44" height="68" />
<img src="/path/from/docroot/pumpkin.jpg" alt="" width="44" height="68" />
<img src="../path/relative/to/currdir/pumpkin.jpg" alt="" width="44" height="68" />

Smarty:html_checkboxes函数
Smarty:html_options函数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

I.Smarty基础

1.Smart是什么?

II.Smarty模板设计师篇

6.Smarty复合修饰器

9.Smarty配置文件

10.Smarty调试控制台

III. 程序开发者篇

11. Smarty字符集编码

12.Smarty常量

13.Smarty成员变量

14.Smarty成员方法

17.Smarty高级特性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }