php-src/ext/standard/tests/strings/dirname_error.phpt
2008-06-22 19:22:41 +00:00

26 lines
574 B
PHP

--TEST--
Test dirname() function : error conditions
--FILE--
<?php
/* Prototype: string dirname ( string $path );
Description: Returns directory name component of path.
*/
echo "*** Testing error conditions ***\n";
// zero arguments
var_dump( dirname() );
// more than expected no. of arguments
var_dump( dirname("/var/tmp/bar.gz", ".gz") );
echo "Done\n";
?>
--EXPECTF--
*** Testing error conditions ***
Warning: dirname() expects exactly 1 parameter, 0 given in %s on line %d
NULL
Warning: dirname() expects exactly 1 parameter, 2 given in %s on line %d
NULL
Done