Hi,
$cnt[0]=>Array( [0] => 0 [1] => 0 [2] => 0 ),
$cnt[1] => Array ( [0] => 1 [1] => 0 [2] => 0 )
i want convert this array to below result,
$cnt[0]=(0,0);
$cnt[1]=(0,0);
$cnt[2]=(0,1);
any php function there to convert like this format,
Thanks,
Nithish.