Cloud-REST-API zum schnellen Bearbeiten aller gängigen Dokumentformate in jeder Art von PHP-Anwendung, ohne externe Software installieren zu müssen.
Kostenlos testenDas GroupDocs.Editor Cloud SDK für PHP unterstützt die Bearbeitung und Bearbeitung einer Reihe gängiger Dokumentdateiformate in PHP-Anwendungen. Integrieren Sie einfach das GroupDocs.Editor Cloud SDK für PHP mit der GroupDocs.Editor Cloud REST API, laden Sie unterstützte Dokumente in einen beliebigen WYSIWYG-HTML-Editor eines Drittanbieters hoch, bearbeiten Sie das Dokument und speichern Sie es wieder im ursprünglichen Dokumentformat, ohne das Erscheinungsbild nach der Bearbeitung zu beeinträchtigen. Die PHP-Editor-Bibliothek unterstützt eine Vielzahl von Dokumentformaten, darunter Microsoft Word (DOC, DOCX, WordML), Excel (XLS, XLSX, SpreadsheetML), Präsentationen (PPT, PPTX), HTML, XML, TXT und OpenDocument.
Das GroupDocs.Editor Cloud SDK für PHP ist als Schicht auf der GroupDocs.Editor Cloud REST API aufgebaut, die wertvolle Entwicklungszeit spart, indem Low-Level-Anfragen verwaltet und Antworten verarbeitet werden. Die Entwickler können sich darauf konzentrieren, den spezifischen Code nur dann zu schreiben, wenn er im Projekt benötigt wird.
Sehen Sie sich GroupDocs.Editor Cloud SDK for PHP at GitHub an, wenn Sie nach dem Quellcode suchen, um Dateien in der Cloud zu kommentieren .
Sie können Low-Code-PHP-APIs ohne Einschränkungen GroupDocs.Editor testen.
GroupDocs.Editor Cloud ist auch als Docker-Image verfügbar, das zum [Selbsthosten] (https://purchase.groupdocs.cloud/self-hosting) des Dienstes verwendet werden kann. Oder Sie können Ihre eigenen Dienste mit High-Code-APIs von GroupDocs.Editor erstellen, die derzeit unsere REST-APIs steuern.
//Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
$AppSid = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
$AppKey = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
$configuration = new GroupDocs\Editor\Configuration();
$configuration->setAppSid($AppSid);
$configuration->setAppKey($AppKey);
$editApi = new GroupDocs\Editor\EditApi($configuration);
$fileApi = new GroupDocs\Editor\FileApi($configuration);
// The document already uploaded into the storage
// Load it into editable state
$fileInfo = new Model\FileInfo();
$fileInfo->setFilePath("Spreadsheet/four-sheets.xlsx");
$loadOptions = new Model\SpreadsheetLoadOptions();
$loadOptions->setFileInfo($fileInfo);
$loadOptions->setOutputPath("output");
$loadOptions->setWorksheetIndex(0);
$loadResult = $editApi->load(new Requests\loadRequest($loadOptions));
// Download html document
$htmlFile = $fileApi->downloadFile(new Requests\downloadFileRequest($loadResult->getHtmlPath()));
$html = file_get_contents($htmlFile->getRealPath());
// Edit something...
$html = str_replace("This is sample sheet", "This is sample sheep", $html);
// Upload html back to storage
file_put_contents($htmlFile->getRealPath(), $html);
$uploadRequest = new Requests\uploadFileRequest($loadResult->getHtmlPath(), $htmlFile->getRealPath());
$fileApi->uploadFile($uploadRequest);
// Save html back to xlsx
$saveOptions = new Model\SpreadsheetSaveOptions();
$saveOptions->setFileInfo($fileInfo);
$saveOptions->setOutputPath("output/edited.xlsx");
$saveOptions->setHtmlPath($loadResult->getHtmlPath());
$saveOptions->setResourcesPath($loadResult->getResourcesPath());
$saveResult = $editApi->save(new Requests\saveRequest($saveOptions));
// Done.
echo "Document edited: " . $saveResult->getPath();