php-src/ext/standard/tests/file/clearstatcache_error.phpt

20 lines
546 B
Plaintext
Raw Normal View History

--TEST--
Test clearstatcache() function: error conditions
--FILE--
<?php
/*
Prototype: void clearstatcache ([bool clear_realpath_cache[, filename]]);
Description: clears files status cache
*/
2007-11-05 17:43:21 +00:00
echo "*** Testing clearstatcache() function: error conditions ***\n";
var_dump( clearstatcache(0, "/foo/bar", 1) ); //No.of args more than expected
echo "*** Done ***\n";
?>
--EXPECTF--
2007-11-05 17:43:21 +00:00
*** Testing clearstatcache() function: error conditions ***
Warning: clearstatcache() expects at most 2 parameters, 3 given in %s on line %d
NULL
*** Done ***