This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP Array

array(3) { [0]=> string(5) "Volvo" [1]=> string(3) "BMW" [2]=> string(6) "Toyota" }

<?php  
// var_dump() function returns the data type and value:
$cars = array("Volvo","BMW","Toyota");
var_dump($cars);
?>