php instantiate array code example
Example 1: php initialize array
// Initialize Empty Array (PHP 5.4 and higher)
$myArray = [];
// Initialize Empty Array (Before PHP 5.4)
$myArray = array();
Example 2: PHP Arrays
<?php
$cars = array("Volvo", "BMW", "Toyota");
echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";
?>