Searched refs:fileatime (Results 1 – 15 of 15) sorted by relevance
/PHP-7.2/tests/security/ |
H A D | open_basedir_fileatime.phpt | 8 test_open_basedir("fileatime"); 16 *** Testing open_basedir configuration [fileatime] *** 23 Warning: fileatime(): open_basedir restriction in effect. File(../bad) is not within the allowed pa… 26 Warning: fileatime(): open_basedir restriction in effect. File(../bad/bad.txt) is not within the al… 29 Warning: fileatime(): open_basedir restriction in effect. File(..) is not within the allowed path(s… 32 Warning: fileatime(): open_basedir restriction in effect. File(../) is not within the allowed path(… 35 Warning: fileatime(): open_basedir restriction in effect. File(/) is not within the allowed path(s)… 38 Warning: fileatime(): open_basedir restriction in effect. File(../bad/.) is not within the allowed … 41 Warning: fileatime(): open_basedir restriction in effect. File(%s/test/bad/bad.txt) is not within t… 47 Warning: fileatime(): open_basedir restriction in effect. File(./../.) is not within the allowed pa… [all …]
|
/PHP-7.2/ext/standard/tests/file/ |
H A D | 005_error.phpt | 2 Test fileatime(), filemtime(), filectime() & touch() functions : error conditions 6 Prototype: int fileatime ( string $filename ); 27 var_dump( fileatime("/no/such/file/or/dir") ); 33 var_dump( fileatime(__FILE__, "string") ); 39 var_dump( fileatime() ); 46 var_dump( fileatime("/no/such/file/or/dir", "string") ); 52 var_dump( fileatime(__FILE__, "string") ); 63 Warning: fileatime(): stat failed for /no/such/file/or/dir in %s on line %d 75 Warning: fileatime() expects exactly 1 parameter, 2 given in %s on line %d 88 Warning: fileatime() expects exactly 1 parameter, 0 given in %s on line %d [all …]
|
H A D | filestat.phpt | 9 var_dump(fileatime(".")); 15 var_dump(fileatime("./..")); 21 var_dump(fileatime(__FILE__)); 27 var_dump(fileatime("/no/such/file/or/dir")); 58 Warning: fileatime(): stat failed for /no/such/file/or/dir in %s on line %d
|
H A D | touch_variation1.phpt | 19 var_dump(fileatime($filename)); 26 var_dump(fileatime($filename));
|
H A D | 005_basic.phpt | 2 Test fileatime(), filemtime(), filectime() & touch() functions : basic functionality 6 Prototype: int fileatime ( string $filename ); 24 print( @date('Y:M:D:H:i:s', fileatime(__FILE__)) )."\n"; 30 print( @date('Y:M:D:H:i:s', fileatime(".")) )."\n";
|
H A D | 005_variation2-win32.phpt | 2 Test fileatime(), filemtime(), filectime() & touch() functions : usage variation 14 Prototype: int fileatime ( string $filename ); 38 echo fileatime($filename)."\n"; 90 Warning: fileatime(): stat failed for in %s on line %d 101 Warning: fileatime(): stat failed for | in %s on line %d
|
H A D | 005_variation2.phpt | 2 Test fileatime(), filemtime(), filectime() & touch() functions : usage variation 14 Prototype: int fileatime ( string $filename ); 38 echo fileatime($filename)."\n";
|
H A D | 005_variation-win32.phpt | 2 Test fileatime(), filemtime(), filectime() & touch() functions : usage variation 12 Prototype: int fileatime ( string $filename ); 35 print( @date( 'Y:M:D:H:i:s', fileatime($filename) ) )."\n"; 89 /* fileatime + 2 */ 104 /* fileatime + 2 */ 123 var_dump( touch($file_name2, @date(fileatime($file_name2))) ); 128 var_dump( touch($file_path."/005_variation_touch_fly.tmp", @date(fileatime($file_name2)), time()) );
|
H A D | 005_variation.phpt | 2 Test fileatime(), filemtime(), filectime() & touch() functions : usage variation 15 Prototype: int fileatime ( string $filename ); 38 print( @date( 'Y:M:D:H:i:s', fileatime($filename) ) )."\n"; 92 /* fileatime + 2 */ 119 /* fileatime + 2 */ 138 var_dump( touch($file_name2, @date(fileatime($file_name2))) ); 143 var_dump( touch($file_path."/005_variation_touch_fly.tmp", @date(fileatime($file_name2)), time()) );
|
/PHP-7.2/ext/zlib/tests/ |
H A D | zlib_scheme_stat_basic2.phpt | 26 echo "fileatime="; 27 var_dump(fileatime($srcFile)); 43 fileatime= 44 Warning: fileatime(): stat failed for compress.zlib://%s004.txt.gz in %s on line %d
|
/PHP-7.2/ext/phar/tests/ |
H A D | stat.phpt | 35 echo "fileatime\n"; 36 var_dump(fileatime("dir/file1.txt")); 198 fileatime
|
/PHP-7.2/ext/standard/ |
H A D | php_filestat.h | 30 PHP_FUNCTION(fileatime);
|
H A D | filestat.c | 625 zend_long filetime = 0, fileatime = 0; in PHP_FUNCTION() local 636 Z_PARAM_LONG(fileatime) in PHP_FUNCTION() 656 newtime->actime = fileatime; in PHP_FUNCTION() 1038 FileFunction(PHP_FN(fileatime), FS_ATIME) in FileFunction()
|
H A D | basic_functions.c | 3232 PHP_FE(fileatime, arginfo_fileatime)
|
/PHP-7.2/ext/phar/ |
H A D | func_interceptors.c | 1032 PHAR_INTERCEPT(fileatime); in phar_intercept_functions_init() 1068 PHAR_RELEASE(fileatime); in phar_intercept_functions_shutdown()
|
Completed in 31 milliseconds