1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00

Deprecated style used

This commit is contained in:
foobar
2001-10-22 02:49:34 +00:00
parent f8b0353fec
commit db388374ed

View File

@@ -3,7 +3,7 @@ Get a value from an object of type Random
--SKIPIF--
<?php if (!extension_loaded("satellite")) print "skip";
// internet connection needed, try to lookup www.php.net
exec("host www.php.net 2>/dev/null", $output, &$rv);
exec("host www.php.net 2>/dev/null", $output, $rv);
if ($rv) print "skip";
?>
--POST--