本文整理汇总了PHP中NNFrameworkFunctions::getContents方法的典型用法代码示例。如果您正苦于以下问题:PHP NNFrameworkFunctions::getContents方法的具体用法?PHP NNFrameworkFunctions::getContents怎么用?PHP NNFrameworkFunctions::getContents使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NNFrameworkFunctions
的用法示例。
在下文中一共展示了NNFrameworkFunctions::getContents方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getGeo
function getGeo($service)
{
if ($this->geo !== null) {
return $this->geo;
}
require_once JPATH_PLUGINS . '/system/nnframework/helpers/functions.php';
$func = new NNFrameworkFunctions();
$ip = $_SERVER['REMOTE_ADDR'] == '127.0.0.1' ? '' : $_SERVER['REMOTE_ADDR'];
switch ($service) {
case 'geoplugin':
if (!($geo = json_decode($func->getContents('http://www.geoplugin.net/json.gp?ip=' . $ip)))) {
$this->geo = false;
return false;
}
if (isset($geo->geoplugin_status) && $geo->geoplugin_status == 404) {
$this->geo = false;
return false;
}
$this->geo = (object) array('continent' => isset($geo->geoplugin_continentCode) ? $geo->geoplugin_continentCode : '', 'country' => isset($geo->geoplugin_countryCode) ? $geo->geoplugin_countryCode : '', 'region' => isset($geo->geoplugin_regionCode) ? $geo->geoplugin_regionCode : '');
break;
case 'telize':
default:
if (!($geo = json_decode($func->getContents('http://www.telize.com/geoip/' . $ip)))) {
$this->geo = false;
return false;
}
if (isset($geo->code)) {
$this->geo = false;
return false;
}
$this->geo = (object) array('continent' => isset($geo->continent_code) ? $geo->continent_code : '', 'country' => isset($geo->country_code) ? $geo->country_code : '', 'region' => isset($geo->region_code) ? $geo->region_code : '');
break;
}
return $this->geo;
}
示例2: getGeo
function getGeo()
{
if (!$this->geo) {
require_once JPATH_PLUGINS . '/system/nnframework/helpers/functions.php';
$func = new NNFrameworkFunctions();
$this->geo = json_decode($func->getContents('http://www.geoplugin.net/json.gp?ip=' . $_SERVER['REMOTE_ADDR']));
}
return $this->geo;
}