Skip to content

Instantly share code, notes, and snippets.

View Rixafy's full-sized avatar
♟️
Lichess 24/7

Rixafy

♟️
Lichess 24/7
  • Prague, Czechia
  • 20:36 (UTC +01:00)
View GitHub Profile
@bohwaz
bohwaz / dns_get_record_from.php
Last active January 22, 2025 22:18
PHP script to retrieve a DNS record from a custom nameserver
<?php
/**
* Make a DNS a request to a custom nameserver, this is similar to dns_get_record, but allows you to query any nameserver
* Usage: dns_get_record_from('ns.server.tld', 'A', 'mydomain.tld');
* => ['42.42.42.42']
* @author bohwaz
*/
function dns_get_record_from(string $server, string $type, string $record, string $protocol = 'udp'): array
{