Differenze tra le versioni di "Libreria PHPExcel"

(Creata pagina con "← ritorno a PHP Category:PHP Category:PHPExcel == Creazione file XLSX ==// xlsx <pre> $xls = new PHPExcel( ); ... $xlsWriter = new \PHPExcel_Wri...")
 
Riga 1: Riga 1:
 
[[GENERALE#PHP|&larr; ritorno a PHP]] [[Category:PHP]] [[Category:PHPExcel]]
 
[[GENERALE#PHP|&larr; ritorno a PHP]] [[Category:PHP]] [[Category:PHPExcel]]
  
== Creazione file XLSX ==// xlsx
+
== Creazione file XLSX ==
 
<pre>
 
<pre>
 
$xls = new PHPExcel( );
 
$xls = new PHPExcel( );

Versione delle 14:21, 16 feb 2024

← ritorno a PHP

Creazione file XLSX

$xls = new PHPExcel( );
...
$xlsWriter = new \PHPExcel_Writer_Excel2007( $xls );
$xlsWriter->save( $filepath );