summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/realpath_cache_win32.phpt
blob: bb8016875a7f1882bb1bb36b0280c7fbdf6f53b1 (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
--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"]=>
  %s(%d%s)
  ["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