summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/lstat_stat_variation11.phpt
blob: 91510209a6f5872f4d08ac00df7d6130b9734b21 (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
--TEST--
Test lstat() and stat() functions: usage variations - effect of is_file()
--SKIPIF--
<?php
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
?>
--FILE--
<?php
$file_path = __DIR__;
require "$file_path/file.inc";

/* test the effects of is_file() on stats of a file */

/* create temp file */
$filename = "$file_path/lstat_stat_variation11.tmp";
$fp = fopen($filename, "w");  // temp file
fclose($fp);

// is_file() on a file
echo "*** Testing stat() on a file after using is_file() on it ***\n";
$old_stat = stat($filename);
// clear the stat
clearstatcache();
sleep(1);
var_dump( is_file($filename) );
$new_stat = stat($filename);
// compare self stats
var_dump( compare_self_stat($old_stat) );
var_dump( compare_self_stat($new_stat) );
// compare the stat
var_dump( compare_stats($old_stat, $new_stat, $all_stat_keys) );
// clear the stat
clearstatcache();

echo "\n--- Done ---";
?>
--CLEAN--
<?php
$file_path = __DIR__;
unlink("$file_path/lstat_stat_variation11.tmp");
?>
--EXPECT--
*** Testing stat() on a file after using is_file() on it ***
bool(true)
bool(true)
bool(true)
bool(true)

--- Done ---