QQWry.php 313 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Components;
  3. use itbdw\Ip\IpLocation;
  4. class QQWry {
  5. /**
  6. * 查询IP地址的详细信息
  7. *
  8. * @param string $ip IPv4
  9. *
  10. * @return array
  11. */
  12. public static function ip($ip): array {
  13. $filePath = database_path('qqwry.dat');
  14. return IpLocation::getLocation($ip, $filePath);
  15. }
  16. }