1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
--TEST--
Test chdir() function : error conditions - Non-existent directory
--FILE--
<?php
/* Prototype : bool chdir(string $directory)
* Description: Change the current directory
* Source code: ext/standard/dir.c
*/
/*
* Pass a directory that does not exist as $directory to chdir() to test behaviour
*/
echo "*** Testing chdir() : error conditions ***\n";
$directory = __FILE__ . '/idonotexist';
var_dump(chdir($directory));
?>
===DONE===
--EXPECTF--
*** Testing chdir() : error conditions ***
Warning: chdir(): %s (errno %d) in %s on line %d
bool(false)
===DONE===
|