File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / file / glob_variation3.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Mon Oct 14 08:02:39 2013 UTC (10 years, 10 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
Test glob() function: ensure no platform difference
--FILE--
<?php
$path = dirname(__FILE__);

ini_set('open_basedir', NULL);
var_dump(glob("$path/*.none"));

ini_set('open_basedir', $path);
var_dump(glob("$path/*.none"));

?>
==DONE==
--EXPECT--
array(0) {
}
bool(false)
==DONE==

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