esta clase te permite exportar ciertos tipos de archivos como xml por ej
a excel, bueno el tema es que no lo esta haciendo:
Código PHP:
Ver original
<?php /* * EXPORTAR A EXCEL */ require_once 'PHPExcel.php'; require_once 'PHPExcel/IOFactory.php'; //PRUEBO CON XML O CON .CSV //$file="/var/www/test/06_04_2011.csv"; $file="/var/www/export/06_04_2011.xml"; echo 'existe: '.$file.'<br >'; //AMBOS ARCHIVOS EXISTEN Y SE LEEN OK } $objPHPExcel = PHPExcel_IOFactory::load($file); $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); $salida='/www/var/site/files/temp/Transportistasx.xlsx'; $objWriter->save($salida); //echo (file_exists($salida)) ? 'existe: '.$salida : 'no'; ?>