php-src/ext/standard/tests/dir/getcwd_error.phpt

30 lines
686 B
PHP

--TEST--
Test getcwd() function : error conditions - Incorrect number of arguments
--FILE--
<?php
/* Prototype : mixed getcwd(void)
* Description: Gets the current directory
* Source code: ext/standard/dir.c
*/
/*
* Pass incorrect number of arguments to getcwd() to test behaviour
*/
echo "*** Testing getcwd() : error conditions ***\n";
// One argument
echo "\n-- Testing getcwd() function with one argument --\n";
$extra_arg = 10;
var_dump( getcwd($extra_arg) );
?>
===DONE===
--EXPECTF--
*** Testing getcwd() : error conditions ***
-- Testing getcwd() function with one argument --
Warning: getcwd() expects exactly 0 parameters, 1 given in %s on line %d
NULL
===DONE===