destoon6.0多城市或開設分站開發教程
阿新 • • 發佈:2018-03-04
destoon分站 destoon判斷多城市 第一步 -> 在 extend.func.php 內加入以下函數
$v[‘name‘] = str_replace(array("市","區"," "),array("","",""),$v[‘name‘]);if(@strstr($city,$v[‘name‘])){
br/>if(@strstr($city,$v[‘name‘])){
}
}
}
function get_ip2city($ip){ global $db; $city = ip2area($ip); if(is_array($all_city = cache_read(‘allcity.php‘))){ foreach($all_city as $k => $v){ $v[‘name‘] = str_replace(array("市","區"," "),array("","",""),$v[‘name‘]); if(@strstr($city,$v[‘name‘])){ return $v; } } }
第二步 -> api\city.php 的 $lists = array(); 上面添加 以下代碼$xxxx = get_ip2city($DT_IP);
看到好多站有類似 猜您可能在西安, 點擊進入西安站>>
如圖:
所有搞了類似一個小功能,希望對需要的哥們AND妹妹有用。
第一步 -> 在 extend.func.php 內加入以下函數
function get_ip2city($ip){
global $db;
$city = ip2area($ip);
if(is_array($all_city = cache_read(‘allcity.php‘))){
foreach($all_city as $k => $v){
br/>if(@strstr($city,$v[‘name‘])){
}
}
}
第二步 -> api\city.php 的 $lists = array(); 上面添加 以下代碼
$xxxx = get_ip2city($DT_IP);
以下我臨時用的是一下判斷僅供參考
// $DT_IP = ‘113.132.197.181‘; //本地臨時測試的IP,實際使用時刪除本行代碼。 if(get_ip2city($DT_IP)){ $xxxx = get_ip2city($DT_IP); }else{ $xxxx[‘name‘] = $L[‘allcity‘]; $xxxx[‘domain‘] = $xxxx[‘areaid‘] = $xxxx[‘style‘] = ‘‘; }
第三步 -> 在模版文件 city.htm 文件中 想添加的部分添加模版代碼
點擊進入{set_style($xxxx[name], $xxxx[style])}站 或 {if $xxxx} 點擊進入{set_style($xxxx[name], $xxxx[style])}站 {/if}destoon6.0多城市或開設分站開發教程