Well, the first is a 1D array with an array 'stuffed' inside of it. You'd reference the data within like so...

$array[0][1] ? ; prints 'a'

The second is a 2D array. The 2D is referenced like so...

$array[0,1] ? ; prints 'a'