1
0
mirror of https://github.com/php/php-src.git synced 2026-03-31 04:32:19 +02:00
Files
archived-php-src/ext/standard/tests/network/gethostbyaddr_basic1.phpt
2018-10-14 19:46:15 +02:00

19 lines
492 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===