summaryrefslogtreecommitdiff
path: root/ext/standard/tests/dir/readdir_variation7.phpt
blob: 7950d5882331227512aa547a8e9264e2e4614dee (plain)
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
27
28
29
30
--TEST--
Test readdir() function : usage variations - use file pointers
--FILE--
<?php
/* Prototype  : string readdir([resource $dir_handle])
 * Description: Read directory entry from dir_handle
 * Source code: ext/standard/dir.c
 */

/*
 * Open a file pointer using fopen and pass to readdir() to test behaviour
 */

echo "*** Testing readdir() : usage variations ***\n";

// get a resource variable
var_dump($fp = fopen(__FILE__, "r"));
try {
    var_dump( readdir($fp) );
} catch (\TypeError $e) {
    echo $e->getMessage() . "\n";
}

?>
===DONE===
--EXPECTF--
*** Testing readdir() : usage variations ***
resource(%d) of type (stream)
%d is not a valid Directory resource
===DONE===