在 PHP 中部署 ONLYOFFICE 需要以下幾個步驟:
首先,你需要在服務器上安裝 ONLYOFFICE Document Server。這是一個基于 Node.js 的應用程序,用于處理文檔編輯和協作。你可以按照官方文檔中的說明進行安裝:https://helpcenter.onlyoffice.com/server/docker/document/docker-installation.aspx
在你的 PHP 項目中,創建一個配置文件(例如:onlyoffice.php),并設置 ONLYOFFICE Document Server 的 URL、API 密鑰等信息。例如:
<?php
return [
'document_server_url' => 'https://your-document-server-domain.com',
'api_key' => 'your-api-key',
];
在你的 PHP 項目中,使用 ONLYOFFICE API 來創建、編輯和查看文檔。你可以使用官方提供的 PHP SDK:https://github.com/ONLYOFFICE/DocumentServerPHPSDK
按照 README 文件中的說明安裝 SDK,然后在你的 PHP 代碼中引入并使用它。例如:
<?php
require_once 'vendor/autoload.php';
use ONLYOFFICE\SDK\OnlyOffice;
$config = require 'onlyoffice.php';
$onlyOffice = new OnlyOffice($config['document_server_url'], $config['api_key']);
// 使用 API 創建、編輯和查看文檔
$document = $onlyOffice->createDocument('example.docx');
$editorUrl = $onlyOffice->getEditorUrl($document);
在你的前端代碼中,使用 ONLYOFFICE 提供的 JavaScript API 來嵌入編輯器。例如,在 HTML 文件中添加以下代碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ONLYOFFICE Integration</title>
<script src="https://your-document-server-domain.com/web-apps/apps/api/documents/api.js"></script>
</head>
<body>
<div id="editor"></div>
<script>
var editorUrl = '<?php echo $editorUrl; ?>';
var editorConfig = {
document: {
fileType: 'docx',
key: 'example.docx',
title: 'Example Document',
url: editorUrl
},
documentType: 'text',
editorConfig: {
callbackUrl: 'https://your-callback-url.com'
}
};
new DocsAPI.DocEditor("editor", editorConfig);
</script>
</body>
</html>
現在,你已經在 PHP 項目中集成了 ONLYOFFICE。請確保所有設置都正確,并對其進行測試和調試。如果遇到問題,請查閱官方文檔和支持資源。