إدارة أوراق العمل في Php
Contents
[
Hide
]
Aspose.Cells - إدارة أوراق العمل
إضافة أوراق عمل إلى ملف Excel جديد
لإضافة ورقة عمل إلى ملف Excel جديد باستخدامAspose.Cells Java for PHP ، ببساطة اتصلadd_worksheet طريقةأوراق العمل وحدة.
كود 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");
إزالة أوراق العمل باستخدام اسم الورقة
لإزالة ورقة العمل حسب اسم الورقة باستخدامAspose.Cells Java for PHP ، ببساطة اتصلremove_worksheet_by_name طريقةأوراق العمل وحدة.
كود 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();
إزالة أوراق العمل باستخدام فهرس الورقة
لإزالة ورقة العمل عن طريق فهرس الورقة باستخدامAspose.Cells Java for PHP ، ببساطة اتصلremove_worksheet_by_index طريقةأوراق العمل وحدة.
كود 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();
قم بتنزيل كود التشغيل
تحميل**إدارة أوراق العمل (Aspose.Cells)**من أي من مواقع الترميز الاجتماعي المذكورة أدناه: