diff options
author | rubencm <rubencm@gmail.com> | 2019-10-31 20:54:21 +0000 |
---|---|---|
committer | rubencm <rubencm@gmail.com> | 2019-10-31 20:54:21 +0000 |
commit | 163aac74dbe500eac223ea2ebdbce0a76c1d6ab4 (patch) | |
tree | 928af074d46a82d5d1a3dec5ba9cf5ad506f37fa /phpBB/includes/functions_compatibility.php | |
parent | 404768a607a3738bf6545c87eed53eec30204be9 (diff) | |
download | forums-163aac74dbe500eac223ea2ebdbce0a76c1d6ab4.tar forums-163aac74dbe500eac223ea2ebdbce0a76c1d6ab4.tar.gz forums-163aac74dbe500eac223ea2ebdbce0a76c1d6ab4.tar.bz2 forums-163aac74dbe500eac223ea2ebdbce0a76c1d6ab4.tar.xz forums-163aac74dbe500eac223ea2ebdbce0a76c1d6ab4.zip |
[ticket/16190] Deprecate phpbb's checkdnsrr wrapper
PHPBB3-16190
Diffstat (limited to 'phpBB/includes/functions_compatibility.php')
-rw-r--r-- | phpBB/includes/functions_compatibility.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/phpBB/includes/functions_compatibility.php b/phpBB/includes/functions_compatibility.php index b5b60e118e..1f9131c9c0 100644 --- a/phpBB/includes/functions_compatibility.php +++ b/phpBB/includes/functions_compatibility.php @@ -601,3 +601,25 @@ function upload_attachment($form_name, $forum_id, $local = false, $local_storage return $file; } + +/** +* Wrapper for php's checkdnsrr function. +* +* @param string $host Fully-Qualified Domain Name +* @param string $type Resource record type to lookup +* Supported types are: MX (default), A, AAAA, NS, TXT, CNAME +* Other types may work or may not work +* +* @return mixed true if entry found, +* false if entry not found, +* null if this function is not supported by this environment +* +* Since null can also be returned, you probably want to compare the result +* with === true or === false, +* +* @deprecated 3.3.0-b2 (To be removed: 4.0.0) +*/ +function phpbb_checkdnsrr($host, $type = 'MX') +{ + return checkdnsrr($host, $type); +} |