Ответ 1
$objPHPExcel->getActiveSheet()->fromArray($testArray, NULL, 'A1');
Он используется в нескольких примерах
Аргументы, описанные в документах API
/**
* Fill worksheet from values in array
*
* @param array $source Source array
* @param mixed $nullValue Value in source array that stands for blank cell
* @param string $startCell Insert array starting from this cell address as the top left coordinate
* @param boolean $strictNullComparison Apply strict comparison when testing for null values in the array
* @throws Exception
* @return PHPExcel_Worksheet
*/