Aggiungi fogli di lavoro al file Excel esistente in PHP
Contents
[
Hide
]
Aggiungi fogli di lavoro al file Excel esistente
Aggiungi fogli di lavoro al file Excel esistente
Codice PHP
$dataDir = '';
// Create Aspose.Cells Helper Object
$ptr = new \COM('Aspose.Cells.Interop.InteropHelper');
// Opening through Path
// Creating a Workbook object and opening an Excel file using its file path
$workbook = $ptr->New("Aspose.Cells.Workbook",array($dataDir . '/book1.xls'));
$worksheets = $ptr->Get($workbook,"Worksheets",array());
$worksheet_index = $ptr->Call($worksheets,"Add_2",array());
$worksheet = $ptr->Get($worksheets,"Item",array($worksheet_index));
$ptr->Set($worksheet,"Name","My Worksheet",array());
$ptr->Call($workbook,"Save",array($dataDir."/output.xls"));
print "Completed." . PHP_EOL;
Scarica il codice in esecuzione
Scaricamento**Aggiungi fogli di lavoro al file Excel esistente (Aspose.Cells)**da uno qualsiasi dei siti di social coding sotto indicati: