php-src/ext/standard/tests/file/clearstatcache_error.phpt
2007-08-13 11:40:57 +00:00

19 lines
484 B
PHP

--TEST--
Test clearstatcache() function: error conditions
--FILE--
<?php
/*
Prototype: void clearstatcache (void);
Description: clears files status cache
*/
echo "*** Testing clearstatcache() function: error conditions --";
var_dump( clearstatcache("file") ); //No.of args more than expected
echo "*** Done ***\n";
?>
--EXPECTF--
*** Testing clearstatcache() function: error conditions --
Warning: Wrong parameter count for clearstatcache() in %s on line %d
NULL
*** Done ***