simple array php code example
Example 1: ccreate array php
$array = array(
"foo" => "bar",
"bar" => "foo",
);
Example 2: php arrays
$nums = [1, 2, 3, 4, 5];
$array = array(
"foo" => "bar",
"bar" => "foo",
);
$nums = [1, 2, 3, 4, 5];