fclose() might be needed

This commit is contained in:
Greg Beaver 2003-12-01 00:43:34 +00:00
parent 87365b0149
commit b27f71ca58

View File

@ -8,6 +8,8 @@ if (!getenv('PHP_PEAR_RUNTESTS')) {
$fp = @fsockopen('pear.php.net', 80);
if (!$fp) {
echo 'skip';
} else {
fclose($fp);
}
?>
--FILE--