summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/realpath_cache_win32.phpt
blob: fa5f22c3b59a66b1cf47c294424cc39b2fa01ba1 (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[__FILE__]);

echo "Done\n";
?>
--EXPECTF--	
int(%d)
array(8) {
  ["key"]=>
  %s(%d%s)
  ["is_dir"]=>
  bool(false)
  ["realpath"]=>
  string(%d) "%sphp"
  ["expires"]=>
  int(%d)
  ["is_rvalid"]=>
  bool(%s)
  ["is_wvalid"]=>
  bool(%s)
  ["is_readable"]=>
  bool(%s)
  ["is_writable"]=>
  bool(%s)
}
Done