summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/windows_mb_path/recursive_it.phpt
blob: 19c08a38c24b98680388c9794085e57fc6f37780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
--TEST--
RecursiveDirectoryIterator with dir path long or of edge case length
--SKIPIF--
<?php
include dirname(__FILE__) . DIRECTORY_SEPARATOR . "util.inc";

skip_if_not_win();

if (strlen(dirname(__FILE__)) > 259) die("Unsuitable starting path length");
?>
--FILE--
<?php

$need_len = 1024;
//$need_len = 259;
$dir = dirname(__FILE__);
while ($need_len - strlen($dir) > 32) {
	$dir .= DIRECTORY_SEPARATOR . str_repeat("a", 32);
}
$dir .= DIRECTORY_SEPARATOR . str_repeat("a", $need_len - strlen($dir));
mkdir($dir, 0700, true);

$fl = $dir . DIRECTORY_SEPARATOR . "hello.txt";
file_put_contents($fl, "");


$start = substr($dir, 0, strpos($dir, DIRECTORY_SEPARATOR, strlen(dirname(__FILE__))+1));
$iter = new RecursiveIteratorIterator(
	new RecursiveDirectoryIterator(
		$start,
		FilesystemIterator::SKIP_DOTS
	),
	RecursiveIteratorIterator::CHILD_FIRST
);

foreach ($iter as $item) {
	if (!$item->isDir()) {
		var_dump($item->getPathname());
	}
}

$iter->rewind();
foreach ($iter as $item) {
	if ($item->isDir()) {
		rmdir($item->getPathname());
	} else {
		unlink($item->getPathname());
	}
}
rmdir($start);
var_dump(file_exists($start));

/*unlink($fl);
do {
	rmdir($dir);
	$dir = dirname($dir);
} while (dirname(__FILE__) != $dir);*/

?>
==DONE==
--EXPECTF--
string(%d) "%shello.txt"
bool(false)
==DONE==