This repository has been archived on 2020-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
ext-collections/tests/022-flatten.phpt

12 lines
319 B
PHP

--TEST--
Test Collection::flatten().
--FILE--
<?php
$array = [['a', 'foo' => 'b'], ['c', 'd', ['e']], 'bar' => 'f'];
$collection = Collection::init($array)->flatten();
if ($collection->toArray() != ['a', 'foo' => 'b', 'c', 'd', ['e'], 'bar' => 'f']) {
echo 'Collection::flatten() failed.', PHP_EOL;
}
?>
--EXPECT--