1--TEST-- 2gethostbyname() function - basic type return test 3--CREDITS-- 4"Sylvain R." <sracine@phpquebec.org> 5--SKIPIF-- 6<?php 7if (getenv("SKIP_SLOW_TESTS")) die("skip slow test"); 8if (getenv("SKIP_ONLINE_TESTS")) die("skip test requiring internet connection"); 9?> 10--FILE-- 11<?php 12 var_dump(is_string(gethostbyname("www.php.net"))); 13?> 14--EXPECT-- 15bool(true) 16