check for required func

This commit is contained in:
Antony Dovgal 2007-05-27 14:39:21 +00:00
parent 060589090d
commit bac779d6b6

View File

@ -5,6 +5,10 @@ Test filetype() function: Variations
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip no fnmatch() on Windows');
}
if (!function_exists("posix_mkfifo")) {
die("skip no posix_mkfifo()");
}
?>
--FILE--
<?php
/*