Gestione dei fogli di lavoro in Php
Contents
[
Hide
]
Aspose.Cells - Gestione dei fogli di lavoro
Aggiungere fogli di lavoro a un nuovo file Excel
Per aggiungere un foglio di lavoro a un nuovo file Excel utilizzando Aspose.Cells Java per PHP, chiama semplicemente il metodo add_worksheet del modulo MangingWorksheets.
Codice 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");
Rimozione dei fogli di lavoro utilizzando il nome del foglio
Per rimuovere il foglio di lavoro per nome utilizzando Aspose.Cells Java per PHP, chiama semplicemente il metodo remove_worksheet_by_name del modulo MangingWorksheets.
Codice 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();
Rimozione dei fogli di lavoro utilizzando l’indice del foglio
Per rimuovere il foglio di lavoro per indice utilizzando Aspose.Cells Java per PHP, chiama semplicemente il metodo remove_worksheet_by_index del modulo MangingWorksheets.
Codice 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();
Scarica il codice in esecuzione
Scarica Gestione dei fogli di lavoro (Aspose.Cells) da uno qualsiasi dei siti di codici sociali menzionati di seguito: