1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
--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 ***
|