three types of arrays in php code example
Example 1: php arrays
$nums = [1, 2, 3, 4, 5];
Example 2: array in php
<?php
$cars = array("Maserati", "Porsche", "BMW");
echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";
?>
$nums = [1, 2, 3, 4, 5];
<?php
$cars = array("Maserati", "Porsche", "BMW");
echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";
?>