mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
16 lines
332 B
PHP
16 lines
332 B
PHP
--TEST--
|
|
Test mkdir() and rmdir() functions : error conditions
|
|
--FILE--
|
|
<?php
|
|
|
|
echo "\n*** Testing rmdir() on non-existent directory ***\n";
|
|
var_dump( rmdir("temp") );
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing rmdir() on non-existent directory ***
|
|
|
|
Warning: rmdir(temp): No such file or directory in %s on line %d
|
|
bool(false)
|
|
Done
|