make a 2d array php

Solutions on MaxInterview for make a 2d array php by the best coders in the world

showing results for - "make a 2d array php"
Mateo
07 Apr 2020
1$cars = array
2  (
3  array("Volvo",22,18),
4  array("BMW",15,13),
5  array("Saab",5,2),
6  array("Land Rover",17,15)
7  );