getdns Functions
PHP Manual

php_getdns_hostname_sync

(PECL getdns >= 0.10.0)

php_getdns_hostname_syncSynchronously retrieve host names given an IP address.

Description

int php_getdns_hostname_sync ( int $context , int $address , int $extensions , int &$response )

This function provides an entry point into the getdns API library to synchronously retrieve host names given an IPv4 or IPv6 address.

Parameters

context

The previously created DNS context that is to be used with this request.

address

A reference to a dictionary structure containing two names: address_type (whose value is bindata and is either "IPv4" or "IPv6") and address_data (whose value is a binary character string (bindata) representing the address to be resolved).

extensions

The extensions dictionary for this request; NULL or 0 (zero) if no extensions.

response

The dictionary to receive the response. The dictionary always contains at least three names: replies_full (a list containing the DNS response as binary data), replies_tree (a list containing the parsed DNS response data) and status (an int). Note that this argument is passed by reference and any existing value will be overwritten. The response must be freed using php_getdns_dict_destroy().

Return Values

This function returns an integer response code. GETDNS_RETURN_GOOD indicates successful completion.


getdns Functions
PHP Manual