Manejo de hojas de trabajo en Php
Contents
[
Hide
]
Aspose.Cells - Gestión de hojas de trabajo
Agregar hojas de trabajo a un nuevo archivo de Excel
Para agregar una hoja de trabajo a un nuevo archivo de Excel usandoAspose.Cells Java for PHP , simplemente llamaañadir_hoja de trabajo método deGestión de hojas de trabajo módulo.
Código PHP
//Instantiating a Workbook object
$workbook = new Workbook();
//Adding a new worksheet to the Workbook object
$worksheets = $workbook->getWorksheets();
$sheetIndex = $worksheets->add();
$worksheet = $worksheets->get($sheetIndex);
//Setting the name of the newly added worksheet
$worksheet->setName("My Worksheet");
//Saving the Excel file
$workbook->save($dataDir . "book.out.xls");
Eliminación de hojas de trabajo usando el nombre de la hoja
Para eliminar la hoja de trabajo por nombre de hoja usandoAspose.Cells Java for PHP , simplemente llamaremove_worksheet_by_name método deGestión de hojas de trabajo módulo.
Código PHP
//Creating a file stream containing the Excel file to be opened
$fstream = new FileInputStream($dataDir . "book.xls");
//Instantiating a Workbook object with the stream
$workbook = new Workbook($fstream);
//Removing a worksheet using its sheet name
$workbook->getWorksheets()->removeAt("Sheet1");
//Saving the Excel file
$workbook->save($dataDir . "book.out.xls");
//Closing the file stream to free all resources
$fstream->close();
Eliminación de hojas de cálculo mediante el índice de hojas
Para eliminar hoja de trabajo por índice de hoja usandoAspose.Cells Java for PHP , simplemente llamaremove_worksheet_by_index método deGestión de hojas de trabajo módulo.
Código PHP
//Creating a file stream containing the Excel file to be opened
$fstream=new FileInputStream($dataDir . "book.xls");
//Instantiating a Workbook object with the stream
$workbook = new Workbook($fstream);
//Removing a worksheet using its sheet index
$workbook->getWorksheets()->removeAt(0);
//Saving the Excel file
$workbook->save($dataDir . "book.out.xls");
//Closing the file stream to free all resources
$fstream->close();
Descargar código de ejecución
Descargar**Gestión de hojas de trabajo (Aspose.Cells)**de cualquiera de los sitios de codificación social mencionados a continuación: