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

20 lines
501 B
Plaintext
Raw Normal View History

--TEST--
2007-11-02 12:57:52 +00:00
Test clearstatcache() function: error conditions
--FILE--
<?php
/*
Prototype: void clearstatcache (void);
Description: clears files status cache
*/
echo "*** Testing clearstatcache() function: error conditions ***\n";
var_dump( clearstatcache("file") ); //No.of args more than expected
echo "*** Done ***\n";
?>
--EXPECTF--
*** Testing clearstatcache() function: error conditions ***
2007-11-02 12:57:52 +00:00
2008-03-05 14:22:06 +00:00
Warning: clearstatcache() expects exactly 0 parameters, 1 given in %s on line %d
NULL
*** Done ***