Skip to content

Instantly share code, notes, and snippets.

@bvelastegui
Created May 4, 2017 16:13
Show Gist options
  • Save bvelastegui/c56f14b5f8648c6402db10c7af079d20 to your computer and use it in GitHub Desktop.
Save bvelastegui/c56f14b5f8648c6402db10c7af079d20 to your computer and use it in GitHub Desktop.
<?php
$excel = new PHPExcel();
//Usamos el worsheet por defecto
$sheet = $excel->getActiveSheet();
//creamos nuestro array con los estilos para titulos
$h1 = array(
'font' => array(
'bold' => true,
'size' => 8,
'name' => 'Tahoma'
),
'borders' => array(
'allborders' => array(
'style' => 'thin'
)
),
'alignment' => array(
'vertical' => 'center',
'horizontal' => 'center'
)
);
//Agregamos texto en las celdas
$sheet->setCellValue('A1', 'Prueba');
$sheet->setCellValue('B1', 'MatrixDevelopments');
//Damos formato o estilo a nuestras celdas
$sheet->getStyle('A1:B1')->applyFromArray($h1);
//exportamos nuestro documento
$writer = new PHPExcel_Writer_Excel5($excel);
$writer->save('prueba1.xls');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment