I have this array $output which looks like this:
Array( [0] => Array( [0] => 1a [1] => 1b [2] => 1c ) [1] =&g
Can't be done with a simple command, but you can use a loop:
foreach(array_keys($output) as $key) { unset($output[$key][1]); }