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");
8?>
9--FILE--
10<?php
11	var_dump(is_string(gethostbyname("www.php.net")));
12?>
13--EXPECT--
14bool(true)
15