當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Piwik_Common::long2ip方法代碼示例

本文整理匯總了PHP中Piwik_Common::long2ip方法的典型用法代碼示例。如果您正苦於以下問題:PHP Piwik_Common::long2ip方法的具體用法?PHP Piwik_Common::long2ip怎麽用?PHP Piwik_Common::long2ip使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Piwik_Common的用法示例。


在下文中一共展示了Piwik_Common::long2ip方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getIp

 function getIp()
 {
     if (isset($this->details['location_ip'])) {
         return Piwik_Common::long2ip($this->details['location_ip']);
     }
     return false;
 }
開發者ID:Gninety,項目名稱:Microweber,代碼行數:7,代碼來源:Visitor.php

示例2: testLong2ip

 /**
  * @dataProvider getLong2IPTestData
  * @group Core
  * @group IP
  */
 public function testLong2ip($N, $P)
 {
     $this->assertEquals($P, Piwik_IP::long2ip($N), bin2hex($N));
     // this is our compatibility function
     $this->assertEquals($P, Piwik_Common::long2ip($N), bin2hex($N));
 }
開發者ID:nnnnathann,項目名稱:piwik,代碼行數:11,代碼來源:IPTest.php

示例3: getHost

 /**
  * Returns the hostname given the string IP in the format ip2long
  * php.net/ip2long
  * 
  * @param string $ip
  * 
  * @return string hostname
  */
 private function getHost($ip)
 {
     return trim(strtolower(@gethostbyaddr(Piwik_Common::long2ip($ip))));
 }
開發者ID:Gninety,項目名稱:Microweber,代碼行數:12,代碼來源:Provider.php

示例4: test_long2ip

 function test_long2ip()
 {
     // a valid network address is either 4 or 16 bytes; those lines are intentionally left blank ;)
     $tests = array(null => '0.0.0.0', "" => '0.0.0.0', "" => '127.0.0.1', "��" => '192.168.1.1', "����" => '192.168.1.2', "���" => '0.0.0.0', "��" => '0.0.0.0', "��" => '0.0.0.0', '-1062731520' => '0.0.0.0', '3232235776' => '0.0.0.0', '168430090' => '0.0.0.0', '9999' => '57.57.57.57', "9999" => '57.57.57.57', '999' => '0.0.0.0', "999" => '0.0.0.0');
     foreach ($tests as $N => $P) {
         $this->assertEqual(Piwik_IP::long2ip($N), $P, bin2hex($N));
         // this is our compatibility function
         $this->assertEqual(Piwik_Common::long2ip($N), $P, bin2hex($N));
     }
 }
開發者ID:nnnnathann,項目名稱:piwik,代碼行數:10,代碼來源:IP.test.php

示例5: isVisitorIpExcluded

 /**
  * Checks if the visitor ip is in the excluded list
  * 
  * @param string $ip Long IP
  * @return bool
  */
 protected function isVisitorIpExcluded($ip)
 {
     $websiteAttributes = Piwik_Common::getCacheWebsiteAttributes($this->idsite);
     if (!empty($websiteAttributes['excluded_ips'])) {
         foreach ($websiteAttributes['excluded_ips'] as $ipRange) {
             if ($ip >= $ipRange[0] && $ip <= $ipRange[1]) {
                 printDebug('Visitor IP ' . Piwik_Common::long2ip($ip) . ' is excluded from being tracked');
                 return true;
             }
         }
     }
     return false;
 }
開發者ID:Gninety,項目名稱:Microweber,代碼行數:19,代碼來源:Visit.php


注:本文中的Piwik_Common::long2ip方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。