File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / dir / scandir_error2.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:03 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_3_10, HEAD
php

--TEST--
Test scandir() function : error conditions - Non-existent directory
--FILE--
<?php
/* Prototype  : array scandir(string $dir [, int $sorting_order [, resource $context]])
 * Description: List files & directories inside the specified path 
 * Source code: ext/standard/dir.c
 */

/*
 * Pass a directory that does not exist to scandir() to test error messages
 */

echo "*** Testing scandir() : error conditions ***\n";

$directory = dirname(__FILE__) . '/idonotexist';

echo "\n-- Pass scandir() an absolute path that does not exist --\n";
var_dump(scandir($directory));

echo "\n-- Pass scandir() a relative path that does not exist --\n";
var_dump(scandir('/idonotexist'));
?>
===DONE===
--EXPECTF--
*** Testing scandir() : error conditions ***

-- Pass scandir() an absolute path that does not exist --

Warning: scandir(%s/idonotexist): failed to open dir: %s in %s on line %d

Warning: scandir(): (errno %d): %s in %s on line %d
bool(false)

-- Pass scandir() a relative path that does not exist --

Warning: scandir(/idonotexist): failed to open dir: %s in %s on line %d

Warning: scandir(): (errno %d): %s in %s on line %d
bool(false)
===DONE===

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>