We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e124ed + 5e77001 commit c6f72eaCopy full SHA for c6f72ea
examples/tree.php
@@ -2,26 +2,26 @@
2
3
require_once 'common.php';
4
5
-$data = [
6
- 'Test' => [
7
- 'Something Cool' => [
+$data = array(
+ 'Test' => array(
+ 'Something Cool' => array(
8
'This is a 3rd layer',
9
- ],
+ ),
10
'This is a 2nd layer',
11
12
- 'Other test' => [
13
- 'This is awesome' => [
+ 'Other test' => array(
+ 'This is awesome' => array(
14
'This is also cool',
15
'This is even cooler',
16
- 'Wow like what is this' => [
+ 'Wow like what is this' => array(
17
'Awesome eh?',
18
- 'Totally' => [
+ 'Totally' => array(
19
'Yep!'
20
21
22
23
24
-];
+);
25
26
printf("ASCII:\n");
27
0 commit comments