create empty 2d array php

Solutions on MaxInterview for create empty 2d array php by the best coders in the world

showing results for - "create empty 2d array php"
Luciana
08 Feb 2017
1<?php
2    $emptyArray = [[]];
3?>