ratacibernetica / php-flatten-array
Flatten an array.
v1.1
2017-05-19 20:40 UTC
Requires (Dev)
- codeception/codeception: dev-master
This package is not auto-updated.
Last update: 2024-10-26 20:37:51 UTC
README
Flatten an array.
Install
composer require ratacibernetica/php-flatten-array
- Expected input:
[ 1, [ 2 ], [[3],[[4]]]];
- Expected output:
[1,2,3,4]
Example Usage:
$multipleArray = [ 1, [ 2 ], [[3],[[4]]]]; $flattener = new ratacibernetica\FlattenArray($multipleArray); $flattenedArray = $flattener->flattened; // equals $flattenedArray, [1,2,3,4]); $otherFlat = $flattener->flattenArray( [1, [2], [3], [[4],[5]]] ); // equals( $otherFlat, [1,2,3,4,5]);
Run tests
Tests are located in the tests
folder, and can be run with codeception, like so:
$ codecept run unit