summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug41655_2.phpt
blob: 20c29844c1d73d928c8b7bee143ef579a717ed2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Bug #41655 (open_basedir bypass via glob()) 2/2
--INI--
open_basedir=/
--FILE--
<?php
	$dir = __DIR__;
	$a=glob($dir . "/test*csv");
	print_r($a);
?>
--EXPECTF--
Array
(
    [0] => %stest.csv
    [1] => %stest2.csv
    [2] => %stest3.csv
)