Actions
Feature #39951
closedAdd possibility to flatten array
Start date:
2012-08-19
Due date:
% Done:
100%
Estimated time:
PHP Version:
5.3
Tags:
Complexity:
Sprint Focus:
Description
A commonly used task in TYPO3 is to convert and work with several types of arrays.
This change allows to flatten a nested multidimensional array to a flat key-value array.
Example:array('first.' => array('second' => 1)) and array('first' => array('second' => 1))
will becomearray('first.second' => 1)
Actions