Skip to content

Instantly share code, notes, and snippets.

@phpfiddle
Created April 16, 2020 01:06
Show Gist options
  • Save phpfiddle/c030e83131de414b75add329a83952fe to your computer and use it in GitHub Desktop.
Save phpfiddle/c030e83131de414b75add329a83952fe to your computer and use it in GitHub Desktop.
[ Posted by Victor Lopez ] jerarquias para armado de arbol
<?php
$N01 = ["Nivel 01",null,null];
$N02 = ["Nivel 02",null,null];
$N03 = ["Nivel 03",null,null];
$N04 = ["Nivel 04",null,null];
$A2 = array_merge($N01,[$N02]);
$A3 = array_merge($A2,[$N03]);
$A4 = array_merge($A3,[$N04]);
$fin = json_encode($A4);
print_r($A4);
print_r('<br><br>');
print_r($fin);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment