html_image函數

html_image函數

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

#href 是圖象連結指向的位置. 如果設定了該屬性,圖象兩側將被加上超級連結標籤,形成一個圖象連結.

技術要點: html_image 需要存取磁碟以取得圖象的尺寸. 如果不使用緩衝,為了最佳化效能,一般情況下建議使用靜態圖象標籤而避免使用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" />


#

繼續學習
||
<?php echo "html_image函数";
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!