blob: 1afc34dd03bea9566dcf7654a48251a491e5d8ed (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
--TEST--
Test is_file() function: usage variations - diff. path notations (Bug #42027)
--FILE--
<?php
/* Passing file names with different notations, using slashes, wild-card chars */
$file_path = __DIR__;
echo "*** Testing is_file() with different notations of file names ***\n";
$dir_name = $file_path."/is_file_variation4";
mkdir($dir_name);
$file_handle = fopen($dir_name."/is_file_variation4.tmp", "w");
fclose($file_handle);
$files_arr = array(
"/is_file_variation4/is_file_variation4.tmp",
/* Testing a file trailing slash */
"/is_file_variation4/is_file_variation4.tmp/",
/* Testing file with double slashes */
"/is_file_variation4//is_file_variation4.tmp",
"//is_file_variation4//is_file_variation4.tmp",
"/is_file_variation4/*.tmp",
"is_file_variation4/is_file*.tmp",
/* Testing Binary safe */
"/is_file_variation4/is_file_variation4.tmp".chr(0),
"/is_file_variation4/is_file_variation4.tmp\0"
);
$count = 1;
/* loop through to test each element in the above array */
foreach($files_arr as $file) {
echo "- Iteration $count -\n";
try {
var_dump( is_file( $file_path."/".$file ) );
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
clearstatcache();
$count++;
}
echo "\n*** Done ***";
?>
--CLEAN--
<?php
$file_path = __DIR__;
$dir_name = $file_path."/is_file_variation4";
unlink($dir_name."/is_file_variation4.tmp");
rmdir($dir_name);
?>
--EXPECT--
*** Testing is_file() with different notations of file names ***
- Iteration 1 -
bool(true)
- Iteration 2 -
bool(false)
- Iteration 3 -
bool(true)
- Iteration 4 -
bool(true)
- Iteration 5 -
bool(false)
- Iteration 6 -
bool(false)
- Iteration 7 -
bool(false)
- Iteration 8 -
bool(false)
*** Done ***
|