Enregistrement de fichiers en PHP
Contents
[
Hide
]
Aspose.Cells - Enregistrer des fichiers Excel
Ouverture par chemin
Enregistrer un fichier Microsoft Excel en faisant référence au chemin du fichier
Code 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());
//Your Code goes here for any workbook related operations
$ptr->Call($workbook,"Save",array($dataDir.'/book1.xls'));
print "File saved successfully!" . PHP_EOL;
Télécharger le code en cours d’exécution
Télécharger Enregistrement de fichiers (Aspose.Cells) de l’un des sites de codage social mentionnés ci-dessous :