File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / file / realpath_cache.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:04 2012 UTC (12 years, 6 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_17p0, v5_3_10, HEAD
php

--TEST--
realpath_cache_size() and realpath_cache_get()
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
    die('skip not on Windows');
}
?>
--FILE--
<?php

var_dump(realpath_cache_size());
$data = realpath_cache_get();
var_dump($data[__DIR__]);

echo "Done\n";
?>
--EXPECTF--	
int(%d)
array(4) {
  ["key"]=>
  int(%i)
  ["is_dir"]=>
  bool(true)
  ["realpath"]=>
  string(%d) "%sfile"
  ["expires"]=>
  int(%d)
}
Done

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