Home
last modified time | relevance | path

Searched refs:lstat (Results 1 – 25 of 42) sorted by relevance

12

/PHP-7.4/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation9.phpt42 echo "*** Checking lstat() on soft link ***\n";
48 $s1 = lstat($soft_link);
52 echo "\nlinkinfo() value matches lstat['dev']\n";
58 echo "\n*** Checking lstat() on hard link ***\n";
63 $s1 = lstat($hard_link);
80 $s1 = lstat($soft_link);
106 *** Checking lstat() on soft link ***
110 linkinfo() value matches lstat['dev']
112 *** Checking lstat() on hard link ***
116 linkinfo() value matches lstat['dev']
[all …]
H A Dlstat_stat_variation22.phpt2 Test lstat() and stat() functions: usage variations - invalid filenames
15 /* Prototype: array lstat ( string $filename );
28 echo "*** testing lstat ***\n";
29 var_dump(lstat(NULL));
30 var_dump(lstat(false));
31 var_dump(lstat(''));
32 var_dump(lstat(' '));
33 var_dump(lstat('|'));
46 *** testing lstat ***
51 Warning: lstat(): Lstat failed for in %s on line %d
[all …]
H A Dlstat_stat_error.phpt2 Test lstat() and stat() functions: error conditions
5 /* Prototype: array lstat ( string $filename );
12 echo "*** Testing lstat() for error conditions ***\n";
14 var_dump( lstat() ); // args < expected
15 var_dump( lstat(__FILE__, 2) ); // args > expected
16 var_dump( lstat("$file_path/temp.tmp") ); // non existing file
17 var_dump( lstat(22) ); // scalar argument
19 var_dump( lstat($arr) ); // array argument
34 *** Testing lstat() for error conditions ***
42 Warning: lstat(): Lstat failed for %s in %s on line %d
[all …]
H A Dlstat_stat_variation15.phpt2 Test lstat() and stat() functions: usage variations - effects changing permissions of link
13 /* Prototype: array lstat ( string $filename );
34 // checking lstat() and stat() on links
35 echo "*** Testing lstat() on a link after changing its access permission ***\n";
37 $old_stat = lstat($linkname);
42 $new_stat = lstat($linkname);
58 *** Testing lstat() on a link after changing its access permission ***
H A Dlstat_stat_variation3.phpt2 Test lstat() and stat() functions: usage variations - effects of rename() on link
12 /* Prototype: array lstat ( string $filename );
32 echo "*** Testing lstat() for link after being renamed ***\n";
35 $old_stat = lstat($old_linkname);
38 $new_stat = lstat($new_linkname);
58 *** Testing lstat() for link after being renamed ***
H A Dlstat_stat_variation14.phpt2 Test lstat() and stat() functions: usage variations - hardlink
5 /* Prototype: array lstat ( string $filename );
23 echo "*** Checking lstat() and stat() on hard link ***\n";
31 $link_stat = lstat($linkname);
49 *** Checking lstat() and stat() on hard link ***
H A Dlstat_stat_variation17.phpt2 Test lstat() and stat() functions: usage variations - effects changing permissions of dir
12 /* Prototype: array lstat ( string $filename );
25 echo "*** Testing lstat() on a dir after changing its access permission ***\n";
50 *** Testing lstat() on a dir after changing its access permission ***
H A Dlstat_stat_variation6.phpt2 Test lstat() and stat() functions: usage variations - effects of touch() on link
21 /* Prototype: array lstat ( string $filename );
43 echo "*** Testing lstat() for link after using touch() on the link ***\n";
44 $old_stat = lstat($link_name);
73 *** Testing lstat() for link after using touch() on the link ***
H A Dlstat_stat_variation16.phpt2 Test lstat() and stat() functions: usage variations - effects changing permissions of file
12 /* Prototype: array lstat ( string $filename );
29 echo "*** Testing lstat() on a file after changing its access permission ***\n";
51 *** Testing lstat() on a file after changing its access permission ***
H A Dlstat_stat_variation12.phpt2 Test lstat() and stat() functions: usage variations - effects of is_link()
13 /* Prototype: array lstat ( string $filename );
37 $old_stat = lstat($linkname);
42 $new_stat = lstat($linkname);
H A D001.phpt50 $ls = lstat ('test.file');
53 echo "test.file lstat and stat differ at element $i\n";
57 $ls = lstat ('test.link');
60 if ($i != 6 && $i != 10 && $i != 11) echo "test.link lstat and stat differ at element $i\n";
128 test.link lstat and stat differ at element 1
129 test.link lstat and stat differ at element 2
130 test.link lstat and stat differ at element 7
131 test.link lstat and stat differ at element 8
132 test.link lstat and stat differ at element 9
H A Dsymlink_link_linkinfo_is_link_variation3.phpt43 $link_stat = lstat($linkname); // lstat of link
58 // taking lstat of symlink
59 $stat = lstat($linkname);
80 // taking lstat of symlink
81 $stat = lstat($linkname);
102 // taking lstat of symlink
103 $stat = lstat($linkname);
H A Dbug77552.phpt11 // Check lstat on a Windows junction to ensure that st_mode is zero
21 $stat = lstat($junction);
H A Dlstat_stat_basic.phpt2 Test lstat() & stat() functions: basic functionality
12 /* Prototype: array lstat ( string $filename );
22 echo "*** Testing lstat() & stat() : basic functionality ***\n";
51 $link_stat = lstat($sym_linkname);
59 echo "*** Testing stat() and lstat() : validating the values stored in stat ***\n";
71 echo "*** Testing stat() and lstat() : comparing stats (recorded before and after file/link creatio…
89 *** Testing lstat() & stat() : basic functionality ***
90 *** Testing stat() and lstat() : validating the values stored in stat ***
96 *** Testing stat() and lstat() : comparing stats (recorded before and after file/link creation) ***
H A Dlstat_stat_variation20.phpt2 Test lstat() and stat() functions: usage variations - link names stored in array/object
12 /* Prototype: array lstat ( string $filename );
30 echo "*** Testing lstat() with linkname stored inside an object/array ***\n";
48 echo "\n-- Testing lstat() on link name stored inside an object --\n";
49 var_dump( lstat($link_object->var_name) );
65 *** Testing lstat() with linkname stored inside an object/array ***
67 -- Testing lstat() on link name stored inside an object --
H A Dlstat_stat_variation2.phpt2 Test lstat() and stat() functions: usage variations - effects of rename() on dir
5 /* Prototype: array lstat ( string $filename );
H A Dlstat_stat_variation1.phpt2 Test lstat() and stat() functions: usage variations - effects of rename() on file
5 /* Prototype: array lstat ( string $filename );
H A Dlstat_stat_variation11.phpt2 Test lstat() and stat() functions: usage variations - effect of is_file()
9 /* Prototype: array lstat ( string $filename );
H A Dlstat_stat_variation13.phpt2 Test lstat() and stat() functions: usage variations - file opened using w and r mode
9 /* Prototype: array lstat ( string $filename );
H A Dlstat_stat_variation7.phpt2 Test lstat() and stat() functions: usage variations - writing data into file
5 /* Prototype: array lstat ( string $filename );
H A Dlstat_stat_variation4.phpt2 Test lstat() and stat() functions: usage variations - effects of touch() on file
9 /* Prototype: array lstat ( string $filename );
H A Dlstat_stat_variation21.phpt2 Test lstat() and stat() functions: usage variations - effects of truncate()
12 /* Prototype: array lstat ( string $filename );
H A Dlstat_stat_variation5.phpt2 Test lstat() and stat() functions: usage variations - effects of touch() on dir
12 /* Prototype: array lstat ( string $filename );
/PHP-7.4/tests/security/
H A Dopen_basedir_lstat.phpt8 test_open_basedir_array("lstat");
16 *** Testing open_basedir configuration [lstat] ***
23 Warning: lstat(): open_basedir restriction in effect. File(../bad) is not within the allowed path(s…
26 Warning: lstat(): open_basedir restriction in effect. File(../bad/bad.txt) is not within the allowe…
29 Warning: lstat(): open_basedir restriction in effect. File(..) is not within the allowed path(s): (…
32 Warning: lstat(): open_basedir restriction in effect. File(../) is not within the allowed path(s): …
35 Warning: lstat(): open_basedir restriction in effect. File(/) is not within the allowed path(s): (.…
38 Warning: lstat(): open_basedir restriction in effect. File(../bad/.) is not within the allowed path…
41 Warning: lstat(): open_basedir restriction in effect. File(%s/test/bad/bad.txt) is not within the a…
47 Warning: lstat(): open_basedir restriction in effect. File(./../.) is not within the allowed path(s…
[all …]
/PHP-7.4/ext/zlib/tests/
H A Dzlib_scheme_stat_basic.phpt14 lstat($srcFile);
20 Warning: lstat(): Lstat failed for compress.zlib://%s/004.txt.gz in %s on line %d

Completed in 22 milliseconds

12