Home
last modified time | relevance | path

Searched refs:stat (Results 51 – 75 of 172) sorted by relevance

1234567

/PHP-8.1/ext/standard/tests/file/
H A Dtouch_basic-win32-mb.phpt38 $init_meta = stat($filename);
42 $next_meta = stat($filename);
49 echo "stat data differs at $type[$i]\n";
62 $init_meta = stat($filename);
81 stat data differs at atime
82 stat data differs at mtime
H A Dtouch_basic-win32.phpt38 $init_meta = stat($filename);
42 $next_meta = stat($filename);
49 echo "stat data differs at $type[$i]\n";
62 $init_meta = stat($filename);
81 stat data differs at atime
82 stat data differs at mtime
H A Dfilegroup_error.phpt20 Warning: filegroup(): stat failed for /no/such/file/dir in %s on line %d
23 Warning: filegroup(): stat failed for string in %s on line %d
26 Warning: filegroup(): stat failed for 100 in %s on line %d
H A Dfileinode_error.phpt18 Warning: fileinode(): stat failed for /no/such/file/dir in %s on line %d
21 Warning: fileinode(): stat failed for string in %s on line %d
24 Warning: fileinode(): stat failed for 100 in %s on line %d
H A Dlstat_stat_variation6.phpt2 Test lstat() and stat() functions: usage variations - effects of touch() on link
35 // touch a link, check stat, there should be difference in atime
45 $new_stat = stat($file_name);
51 // compare the stat
54 // clear the stat
H A Dfileowner_error.phpt19 Warning: fileowner(): stat failed for /no/such/file/dir in %s on line %d
22 Warning: fileowner(): stat failed for string in %s on line %d
25 Warning: fileowner(): stat failed for 100 in %s on line %d
H A Dlstat_stat_variation15.phpt2 Test lstat() and stat() functions: usage variations - effects changing permissions of link
27 // checking lstat() and stat() on links
32 // clear the stat
39 // compare the stat
H A Dbug78386.phpt10 $stat = fstat($handle);
11 var_dump(decoct($stat['mode']));
H A D001.phpt49 $s = stat ('test.file');
53 echo "test.file lstat and stat differ at element $i\n";
56 $s = stat ('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 D005_error.phpt21 Warning: fileatime(): stat failed for /no/such/file/or/dir in %s on line %d
24 Warning: filemtime(): stat failed for /no/such/file/or/dir in %s on line %d
27 Warning: filectime(): stat failed for /no/such/file/or/dir in %s on line %d
H A Dfile.inc13 the same stat.
529 $stat = stat array
538 // named keys present in a stat
550 if($stat[$key] != $stat[$str_key]) {
551 echo "Error: stat[$key] doesn't match with stat[$str_key]\n";
563 echo "\n Dumping stat array ...\n";
564 var_dump($stat);
575 Compares two stat values, stat value should be obtained by stat/lstat
576 $stat1 = first stat array
577 $stat2 = second stat array
[all …]
H A Dfilesize_error.phpt15 Warning: filesize(): stat failed for /no/such/file in %s on line %d
18 Warning: filesize(): stat failed for /no/such/dir in %s on line %d
/PHP-8.1/ext/zip/tests/
H A Dutils.inc14 $stat = $zip->statIndex($index);
16 if (!in_array($stat["name"], $entries)) {
20 $found[] = $stat["name"];
/PHP-8.1/ext/reflection/tests/
H A DReflectionProperty_isDefault_basic.phpt17 static public $stat = "static property";
23 reflectProperty("TestClass", "stat");
37 Reflecting on property TestClass::stat
H A DReflectionMethod_basic2.phpt21 static function stat() {
22 echo "Called stat()\n";
41 reflectMethod("TestClass", "stat");
62 Reflecting on method TestClass::stat()
65 string(%d) "Method [ <user> static public method stat ] {
H A DReflectionMethod_basic3.phpt25 static function stat() {
26 echo "Called stat()\n";
45 reflectMethod("TestClass", "stat");
71 Reflecting on method TestClass::stat()
75 string(4) "stat"
H A DReflectionProperty_getModifiers.001.phpt24 static public $stat = "static property";
33 reflectProperty("TestClass", "stat");
47 Reflecting on property TestClass::stat
H A DReflectionProperty_basic1.phpt35 static public $stat = "static property";
41 reflectProperty("TestClass", "stat");
70 Reflecting on property TestClass::stat
73 string(53) "Property [ public static $stat = 'static property' ]
76 string(4) "stat"
H A DReflectionMethod_basic4.phpt29 static function stat() {
30 echo "Called stat()\n";
49 reflectMethod("TestClass", "stat");
74 Reflecting on method TestClass::stat()
/PHP-8.1/ext/phar/tests/
H A Dbug79082.phpt21 var_dump(decoct(stat(__DIR__ . '/test79082-testfile')['mode']));
22 var_dump(decoct(stat(__DIR__ . '/test79082-testfile2')['mode']));
31 var_dump(decoct(stat(__DIR__ . '/test79082-testfile')['mode']));
32 var_dump(decoct(stat(__DIR__ . '/test79082-testfile2')['mode']));
H A Dbug77022.phpt15 var_dump(decoct(stat($sFile)['mode']));
23 var_dump(decoct(stat(__DIR__ . '/test-file-phar')['mode']));
24 var_dump(decoct(stat(__DIR__ . '/test-from-string')['mode']));
/PHP-8.1/ext/standard/tests/streams/
H A Dbug77765.phpt2 stat() on directory should return 40755 for ftp://
15 var_dump(stat($path)['mode']);
/PHP-8.1/ext/standard/tests/file/windows_mb_path/
H A Dbug61315.phpt2 Bug #61315 stat() fails with specific DBCS characters
35 var_dump(count(stat("$d0\\test0.txt")) > 0);
36 var_dump(count(stat("$d0\\test0.txt")) > 0);
/PHP-8.1/tests/lang/
H A Dexecution_order.phpt152 static $stat = 20;
156 echo c::$stat + (c::$stat=200);
160 echo (c::$stat=300) + c::$stat;
/PHP-8.1/ext/pcre/tests/
H A Dpreg_grep_basic.phpt8 $array = array('HTTP://WWW.EXAMPLE.COM', '/index.html', '/info/stat/', 'http://test.uk.com/index/ht…
24 string(11) "/info/stat/"
42 string(11) "/info/stat/"
58 string(11) "/info/stat/"

Completed in 45 milliseconds

1234567