I am initializing a phpPHP array as follows
$newArray = array();
$newArray['2014-13-03']['SMD']['IMPR'] = 5;
$newArray['2014-13-03']['SMD']['CLICK'] = 10;
JustI just wanted to check if you guys think this is a wrong way to insert data into an array. It is working just fine, but I still wanted to check from an optimization standpoint.