ECSHOP 轮播图调用

直接把代码放在index.php中
/* 轮播图调用 */    
function get_flash_xml()
{
    $flashdb = array();
    if (file_exists(ROOT_PATH . DATA_DIR . '/flash_data.xml'))
    {

        // 兼容v2.7.0及以前版本
        if (!preg_match_all('/item_url="([^"]+)"\slink="([^"]+)"\stext="([^"]*)"\ssort="([^"]*)"/', file_get_contents(ROOT_PATH . DATA_DIR . '/flash_data.xml'), $t, PREG_SET_ORDER))
        {
            preg_match_all('/item_url="([^"]+)"\slink="([^"]+)"\stext="([^"]*)"/', file_get_contents(ROOT_PATH . DATA_DIR . '/flash_data.xml'), $t, PREG_SET_ORDER);
        }

        if (!empty($t))
        {
            foreach ($t as $key => $val)
            {
                $val[4] = isset($val[4]) ? $val[4] : 0;
                $flashdb[] = array('src'=>$val[1],'url'=>$val[2],'text'=>$val[3],'sort'=>$val[4]);
            }
        }
    }
    return $flashdb;
}
$playerdb = get_flash_xml();
$smarty->assign('ad', $playerdb);



调用:
{foreach from=$ad item=ad}
<a target="_blank" href="#"><img src="{$ad.src}" /></a>
{/foreach}

欢迎转载,原文地址:http://www.lrfun.com/html/technology/ECSHOP/2015/0128/7.html

上一篇:没有了
下一篇:ECShop 如何去掉 power by ecshop