destoon6.0多城市或开设分站开发教程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了destoon6.0多城市或开设分站开发教程相关的知识,希望对你有一定的参考价值。
第一步 -> 在 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){
$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){
$v[‘name‘] = str_replace(array("市","区"," "),array("","",""),$v[‘name‘]);br/>if(@strstr($city,$v[‘name‘])){
return $v;
}
}
}
第二步 -> 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多城市或开设分站开发教程的主要内容,如果未能解决你的问题,请参考以下文章