当前位置: 首页>>代码示例>>PHP>>正文


PHP NNFrameworkFunctions::getContents方法代码示例

本文整理汇总了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;
 }
开发者ID:naka211,项目名称:kkvn,代码行数:35,代码来源:geo.php

示例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;
 }
开发者ID:interfaceslivres,项目名称:ccmd-ufpb,代码行数:9,代码来源:geo.php


注:本文中的NNFrameworkFunctions::getContents方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。