1
0
mirror of https://github.com/php/php-src.git synced 2026-04-11 18:13:00 +02:00
Files
archived-php-src/ext/spl/tests/recursive_tree_iterator_setpostfix.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

87 lines
1.0 KiB
PHP

--TEST--
SPL: RecursiveTreeIterator::setPostfix()
--CREDITS--
Joshua Thijssen (jthijssen@noxlogic.nl)
--FILE--
<?php
$arr = array(
0 => array(
"a",
1,
),
"a" => array(
2,
"b",
3 => array(
4,
"c",
),
"3" => array(
4,
"c",
),
),
);
$it = new RecursiveArrayIterator($arr);
$it = new RecursiveTreeIterator($it);
echo "----\n";
echo $it->getPostfix();
echo "\n\n";
echo "----\n";
$it->setPostfix("POSTFIX");
echo $it->getPostfix();
echo "\n\n";
echo "----\n";
foreach($it as $k => $v) {
echo "[$k] => $v\n";
}
echo "----\n";
$it->setPostfix("");
echo $it->getPostfix();
echo "\n\n";
echo "----\n";
foreach($it as $k => $v) {
echo "[$k] => $v\n";
}
?>
--EXPECT--
----
----
POSTFIX
----
[0] => |-ArrayPOSTFIX
[0] => | |-aPOSTFIX
[1] => | \-1POSTFIX
[a] => \-ArrayPOSTFIX
[0] => |-2POSTFIX
[1] => |-bPOSTFIX
[3] => \-ArrayPOSTFIX
[0] => |-4POSTFIX
[1] => \-cPOSTFIX
----
----
[0] => |-Array
[0] => | |-a
[1] => | \-1
[a] => \-Array
[0] => |-2
[1] => |-b
[3] => \-Array
[0] => |-4
[1] => \-c