ONLYOFFICE是一个开源的协作套件,可以将其集成到PHP应用程序中,以便在线编辑和共享文档
安装ONLYOFFICE Document Server:首先,您需要在服务器上安装ONLYOFFICE Document Server。您可以从官方网站下载Docker镜像并运行容器。
创建ONLYOFFICE API密钥:为了保护API调用,您需要生成一个密钥。这将在ONLYOFFICE Document Server和您的PHP应用程序之间建立安全连接。
安装ONLYOFFICE PHP SDK:在您的PHP项目中,使用Composer安装ONLYOFFICE PHP SDK。这将使您能够更轻松地与ONLYOFFICE Document Server进行交互。
composer require onlyoffice/documentserver-php-sdk
require_once __DIR__ . '/vendor/autoload.php';
use OnlyOffice\SDK\OnlyOffice;
$onlyOffice = new OnlyOffice([
'documentServerUrl' => 'https://your-document-server.com',
'apiSecretKey' => 'your-secret-key'
]);
$editor = $onlyOffice->createEditor([
'documentId' => 'your-document-id',
'documentUrl' => 'https://your-document-url.com',
'callbackUrl' => 'https://your-callback-url.com'
]);
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ONLYOFFICE Integration</title>
</head>
<body>
<?php echo $editor->getHtml(); ?>
</body>
</html>
// callback.php
require_once __DIR__ . '/vendor/autoload.php';
use OnlyOffice\SDK\OnlyOffice;
$onlyOffice = new OnlyOffice([
'documentServerUrl' => 'https://your-document-server.com',
'apiSecretKey' => 'your-secret-key'
]);
$callback = $onlyOffice->handleCallback($_POST);
if ($callback->isValid()) {
// Process the updated document, e.g., save it to your database or storage system
} else {
// Handle invalid callback requests
}
现在,您已经成功地将ONLYOFFICE集成到了您的PHP应用程序中。用户可以在线编辑文档,并在编辑完成后接收更新通知。