如何在模板中调用首页的广告轮播图片

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

为了在页面中调用后台上传的图片地址和对应的链接,我们可以在index.php最下面增加一个函数
/***获取首页广告***/
function get_index_ad()
{
$flashdb = array();
if (file_exists(ROOT_PATH . DATA_DIR . '/flash_data.xml'))
{
$uri = $GLOBALS['ecs']->url();
$content = file_get_contents(ROOT_PATH . DATA_DIR . '/flash_data.xml');
$xml = **xml_load_string($content);
if (!empty($xml))
{
foreach ($xml as $key => $item)
{
$attr = $item->attributes();
$item_url =strpos($attr['item_url'], 'http') === false? $uri . $attr['item_url']attr['item_url'];
$flashdb[] = array('src'=>trim($item_url),'url'=>trim($attr['link']),'text'=>trim($attr['text']),'sort'=>trim($attr['sort']));
}
}
}
return $flashdb;
}
复制代码
然后在index.php的上面增加smarty变量

$smarty->assign('index_ad', get_index_ad());// 首页轮播

然后就可以在index.dwt中就可以循环显示出图片了

{foreach from=$index_ad item=iad}
<a href="{$iad.url}" target="_blank" tabindex="{$iad.text}"><img src="{$iad.src}" /></a>
{/foreach}














http://yx8664.com/
http://by33888.com/

回答:
如果有更好的方法,可以交流下~