1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/standard/tests/network/gethostbyaddr_basic1.phpt
2011-09-05 12:34:55 +00:00

19 lines
494 B
PHP

--TEST--
Test gethostbyaddr() function : basic functionality
--FILE--
<?php
/* Prototype : string gethostbyaddr ( string $ip_address )
* Description: Get the Internet host name corresponding to a given IP address
* Source code: ext/standard/dns.c
*/
echo "*** Testing gethostbyaddr() : basic functionality ***\n";
echo gethostbyaddr("127.0.0.1")."\n";
?>
===DONE===
--EXPECTF--
*** Testing gethostbyaddr() : basic functionality ***
%rloopback|localhost(\.localdomain)?|%s%r
===DONE===