PHP Classes

PHP Fast IP Address Locator: Get the location of an IP using IPLocation files

Recommend this page to a friend!
  Info   Demos   Screenshots   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
StarStarStar 57%Total: 617 All time: 5,102 This week: 73Up
Version License PHP version Categories
fast-ip-locator 1.0.11MIT/X Consortium ...5.3Networking, PHP 5, Geography
Description 

Author

This class can get the location of an IP address using IPLocation service database files.

It can install the files of IP range blocks from an archive obtained from the IPLocation service.

The class can get the location of an IP address by looking up at the right files depending on the IP address.

Picture of Andras Toth
  Performance   Level  
Name: Andras Toth <contact>
Classes: 3 packages by
Country: Hungary Hungary

Details

FastSpeedIpLocator ================== Fast ip parsing from local file, using ip2Location CSV database. - Very simple usage - Working with all ip2Location database CSV version - Parsing time close to mysql selection time - IPV4 Or IPV6 [FastSpeedIpLocator] - Online Demo <img src = "capture.jpg" width="640" height="360"/> Version ---- 1.0.0 Requirements ---- - PHP Web server 5.5 or above Installation ---- - Copy whole folder (iplocator) to your web server. - Download csv database from [ip2location], Lite is free! - install blocks at first, -> index.php index.php - example -------------- ```sh <?php require_once ('IpLocator.php'); if (isset($_POST['look']) && (isset($_POST['inp']) || $_POST['inp'] != '')) { $curTime = microtime(true); $loc = IpLocator::getInstance(); $res = $loc->LocateIp($_POST['inp']); $elp = (round(microtime(true) - $curTime, 3) * 1000); echo '<br>'; foreach ($res as $key => $value) { echo $key . ' => ' . $value . '<br>'; } echo '<br>'; echo 'Elpassed time: ' . $elp . ' Us'; } $filename = 'update/*.[zZ][iI][pP]'; if (isset($_POST['install']) && count(glob($filename)) > 0) { ini_set('max_execution_time', 300); $loc = IpLocator::getInst //InstallBlocks(true for optimize best performance OR rows per indexed file, true for delete temp files);15.6965 $loc->InstallBlocks(glob($filename) [0], true, true); unset($loc); exit; } else if (isset($_POST['install']) && count(glob($filename)) === 0) { echo 'Data file (update/*.ZIP) is not exist!<br>'; echo 'Register to <a href = "http://www.ip2location.com//">www.ip2location.com</a><br>'; echo 'Download IP Location Database CSV in Zip format and copy to update folder.'; } ?> ``` License ---- MIT Author: Tóth András --- http://atandrastoth.co.uk/ 2015-05-27 [FastSpeedIpLocator]:http://atandrastoth.co.uk/main/pages/phpclasses/iplocator/ [ip2location]:http://www.ip2location.com/

  demoExternal page  
Screenshots (3)  
  • demo
  • demo2
  • demo3
  Files folder image Files (9)  
File Role Description
Files folder imageiplocator (2 files, 2 directories)
Accessible without login Image file capture.jpg Data Auxiliary data
Accessible without login Plain text file README.md Data Auxiliary data

  Files folder image Files (9)  /  iplocator  
File Role Description
Files folder imageip_blocks (1 file)
Files folder imageupdate (1 file)
  Accessible without login Plain text file index.php Example Unit test script
  Plain text file IpLocator.php Class Class source

  Files folder image Files (9)  /  iplocator  /  ip_blocks  
File Role Description
  Accessible without login Plain text file README.md Data Auxiliary data

  Files folder image Files (9)  /  iplocator  /  update  
File Role Description
  Accessible without login Plain text file README.md Data Auxiliary data

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 66%
Total:617
This week:0
All time:5,102
This week:73Up
 User Ratings  
 
 All time
Utility:83%StarStarStarStarStar
Consistency:83%StarStarStarStarStar
Documentation:-
Examples:75%StarStarStarStar
Tests:-
Videos:-
Overall:57%StarStarStar
Rank:1687