https://github.com/parseword/php-multithreaded-resolver
Multithreaded DNS PTR/A resolver
https://github.com/parseword/php-multithreaded-resolver
dns multithreaded php pthreads resolver
Last synced: 10 months ago
JSON representation
Multithreaded DNS PTR/A resolver
- Host: GitHub
- URL: https://github.com/parseword/php-multithreaded-resolver
- Owner: parseword
- License: apache-2.0
- Created: 2017-03-03T00:24:37.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T20:07:17.000Z (almost 3 years ago)
- Last Synced: 2025-01-13T07:26:21.509Z (12 months ago)
- Topics: dns, multithreaded, php, pthreads, resolver
- Language: PHP
- Size: 13.7 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# php-multithreaded-resolver
A multithreaded DNS resolver in PHP using basic pthreads capability. You supply
a list of IP addresses, hostnames, or both, and the script will resolve each
one to its DNS counterpart.
I often work with large batches of hosts that need to be translated from IP to
hostname or vice versa. If you only have a handful of hosts to deal with, a
simple script like the following will suffice:
```php