Conversion en fichiers MHTML en PHP
Contents
[
Hide
]
Aspose.Cells - Conversion en fichiers MHTML
Pour convertir la feuille de calcul en fichier MHTML à l’aide de Aspose.Cells for Java en PHP, appelez simplement la feuille de calcul_à_méthode mhtml() du module Convertisseur.
Code PHP
$sveFormat = new SaveFormat();
//Specify the file path
$filePath = $dataDir . "Book1.xlsx";
//Specify the HTML saving options
$sv = new HtmlSaveOptions($sveFormat->M_HTML);
//Instantiate a workbook and open the template XLSX file
$wb = new Workbook($filePath);
//Save the MHT file
$wb->save($filePath . ".out.mht", $sv);
Télécharger le code d’exécution
Télécharger**Conversion en fichiers MHTML (Aspose.Cells)**à partir de l’un des sites de codage social mentionnés ci-dessous :