本文整理汇总了PHP中country::get方法的典型用法代码示例。如果您正苦于以下问题:PHP country::get方法的具体用法?PHP country::get怎么用?PHP country::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类country
的用法示例。
在下文中一共展示了country::get方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: country
}
/*
** call main classes
*/
$obj = new url_controll();
// url controlls
/*
** important variables if more language edit this line
*/
$LANG = $obj->url("segment", 1);
$get_ip = new get_ip();
$ip = $get_ip->ip;
if (empty($LANG)) {
// just domain name
$country = new country();
$country_detect = $country->get($ip);
$welcome_class = $country_detect == "GE" ? $c["welcome.page.slug"] : 'welcome';
$main_language = $country_detect == "GE" ? $c['main.language'] : 'en';
$redirect = new redirect();
$redirect->go(WEBSITE . $main_language . "/" . $welcome_class);
}
/*
insert log
*/
// $file_manipulate = new file_manipulate();
// $file_manipulate->insertLog("[".$ip."][".date("d-m-Y G:m:s")."] - ".WEBSITE_.$actual_link);
/* token */
$_SESSION["token_generator"] = ustring::random(10);
/*
** some more define
*/