Skip to content

Instantly share code, notes, and snippets.

View heffcodex's full-sized avatar
🐈

Vladislav K heffcodex

🐈
View GitHub Profile
@heffcodex
heffcodex / array2tree_converter.php
Created October 27, 2018 20:44
Converts flat array into tree, avoiding the necromancy with references in PHP
<?php
class Array2Tree
{
public static function convert(array $data)
{
$instance = new self($data);
return $instance->getTree();
}