Skip to content

Instantly share code, notes, and snippets.

@tanftw
tanftw / array_unflatten.php
Last active December 21, 2020 02:24
Array Unflatten with PHP
<?php
if ( ! function_exists( 'array_unflatten' ) )
{
/**
* Convert flatten collection (with dot notation) to multiple dimmensionals array
* @param Collection $collection Collection to be flatten
* @return Array
*/
function array_unflatten( $collection )