Merge branch 'PHP-5.5'

* PHP-5.5:
  added new glob() test
This commit is contained in:
Anatol Belski 2013-08-19 11:21:47 +02:00
commit 6c570ad322

View File

@ -0,0 +1,19 @@
--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==