Answers for "initialize empty associative array in php"

PHP
1

declare empty array in php

$emptyArray = []; 
$emptyArray = array();
$emptyArray = (array) null;
Posted by: Guest on May-25-2020

Code answers related to "initialize empty associative array in php"

Browse Popular Code Answers by Language