Created
April 16, 2020 01:06
-
-
Save phpfiddle/c030e83131de414b75add329a83952fe to your computer and use it in GitHub Desktop.
[ Posted by Victor Lopez ] jerarquias para armado de arbol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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