Create Array
You can create arrays by using the array()
function:
Example
$cars = array("Volvo", "BMW", "Toyota");
You can also use a shorter syntax by using the []
brackets:
Example
$cars = ["Volvo", "BMW", "Toyota"];
You can create arrays by using the array()
function:
$cars = array("Volvo", "BMW", "Toyota");
You can also use a shorter syntax by using the []
brackets:
$cars = ["Volvo", "BMW", "Toyota"];