mirror of
https://github.com/php/php-src.git
synced 2025-01-23 04:04:16 +08:00
39 lines
546 B
PHP
39 lines
546 B
PHP
--TEST--
|
|
realpath_cache_size() and realpath_cache_get()
|
|
--SKIPIF--
|
|
<?php
|
|
if (substr(PHP_OS, 0, 3) != 'WIN') {
|
|
die('skip only on Windows');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(realpath_cache_size());
|
|
$data = realpath_cache_get();
|
|
var_dump($data[__DIR__]);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
int(%d)
|
|
array(8) {
|
|
["key"]=>
|
|
int(%d)
|
|
["is_dir"]=>
|
|
bool(true)
|
|
["realpath"]=>
|
|
string(%d) "%sfile"
|
|
["expires"]=>
|
|
int(%d)
|
|
["is_rvalid"]=>
|
|
bool(%s)
|
|
["is_wvalid"]=>
|
|
bool(%s)
|
|
["is_readable"]=>
|
|
bool(%s)
|
|
["is_writable"]=>
|
|
bool(%s)
|
|
}
|
|
Done
|