File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / file / realpath_cache_win32.phpt
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Jul 22 01:32:08 2013 UTC (11 years ago) by misho
Branches: php, MAIN
CVS tags: v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17, HEAD
5.4.17

--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)
  ["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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>