亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

html_image函數(shù)

html_image函數(shù)

basedir 是相對圖象路徑的基底路徑. 如果沒有給出該屬性,將依據(jù)WEB伺服器的根路徑(環(huán)境變數(shù)DOCUMENT_ROOT)為準(zhǔn). 如果模板的安全設(shè)定打開了,圖象的位置必須位於為安全資料夾下.

#href 是圖象連結(jié)指向的位置. 如果設(shè)定了該屬性,圖象兩側(cè)將被加上超級連結(jié)標(biāo)籤,形成一個圖象連結(jié).

技術(shù)要點: html_image 需要存取磁碟以取得圖象的尺寸. 如果不使用緩衝,為了最佳化效能,一般情況下建議使用靜態(tài)圖象標(biāo)籤而避免使用html_iamge.

#eg:

##index .php:require('Smarty.class.php');
$smarty = new Smarty;
$smarty->display('index.tpl');


index.tpl:{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 ="" border="0" width="44" height="68" />
<img src="/path/from/docroot/pumpkin.jpg" alt="" border="0" width="44" height="68" />
<img src="../path/relative/to/currdir/pumpkin.jpg" alt="" border="0" width="44 " height="68" />


#

繼續(xù)學(xué)習(xí)
||
<?php echo "html_image函數(shù)";