1. 程式人生 > >ecshop如何在網站頭部顯示當前城市

ecshop如何在網站頭部顯示當前城市

首先,在/includes/lib_main.php中,找到程式碼:function assign_template($ctype = '', $catlist = array())   ,在方法中新增程式碼:

$smarty->assign('location_city',      get_location_city());   並在檔案末尾新增如下方法:

function get_location_city(){  
          $loc_ip=real_ip();
$loc_ip138Addr = "http://whois.pconline.com.cn/ipJson.jsp?callback=testJson&ip=".$loc_ip;  //一個桶過ip獲取當前所在地區的介面
           $loc_contents = file_get_contents($loc_ip138Addr);  
           $loc_intStart = strpos($loc_contents,"new Array(")+10;  
           $loc_intEnd = strpos($loc_contents,");");  
                        
           $loc_Info = substr($loc_contents,$loc_intStart,$loc_intEnd-$loc_intStart);  
           $loc_Info = str_replace("\"","",$loc_Info);  
             
           $loc_place = explode(",",$loc_Info);  
 list($loc_IP,$loc_Country,$loc_Province,$loc_City,$loc_Net) = $loc_place; 
 
 $loc_num=strpos($loc_City,":");
 $loc_area=substr($loc_City,$loc_num+1);
 $loc_area = ecs_iconv('GBK', 'UTF8', $loc_area);
 return $loc_area;
        }

然後在/themes/default/library/page_header.lbi中,隨便找個地方寫入程式碼:{$location_city},便可在頭部顯示當前所在城市,顯示位置可在css中除錯。

案例結果如下圖: