summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/filetype_error.phpt
blob: 9b4d71fffec5bf01b4bc575f4655aa288269836f (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
31
32
33
34
35
36
37
38
39
--TEST--
Test filetype() function: Error conditions
--FILE--
<?php
/*
Prototype: string filetype ( string $filename );
Description: Returns the type of the file. Possible values are fifo, char,
             dir, block, link, file, and unknown. 
*/

echo "\n*** Testing error conditions ***";
/* non-existing file or dir */
print( filetype("/no/such/file/dir") );

/* unknown type */
print( filetype("string") );
print( filetype(100) );

/* No.of args less than expected */
print( filetype() );

/* No.of args greater than expected */
print( filetype("file", "file") );

echo "\n*** Done ***\n";
?>
--EXPECTF--
*** Testing error conditions ***
Warning: filetype(): Lstat failed for /no/such/file/dir in %s on line %d

Warning: filetype(): Lstat failed for string in %s on line %d

Warning: filetype(): Lstat failed for 100 in %s on line %d

Warning: Wrong parameter count for filetype() in %s on line %d

Warning: Wrong parameter count for filetype() in %s on line %d

*** Done ***