pwsdotru/unoserver-client
Composer 安装命令:
composer require pwsdotru/unoserver-client
包简介
PHP client for Unoserver
README 文档
README
PHP Client for connect to remote UnoServer via XMLRPC.
Unoserver
Unoserver using LibreOffice as a server for converting documents.
Docker for usage Unoserver
Run for tests
Docker files for tests in folder ./tests/docker/
File ./docker-compose.yml for operations with Docker container
Build container (command in project root)
docker-compose build
Start container for tests (command in project root)
docker-compose up
Unoserver listen on localhost (127.0.0.1) and port 2003
For check that server runing use script check-xmlrpc.php. It should output informatino about Unoserver and LibreOffice.
php -f check-xmlrpc.php
PHP
For correct work client need module xmlrpc
XML-RPC support in PHP is not enabled by default. You will need to use the --with-xmlrpc[=DIR] configuration option when compiling PHP to enable XML-RPC support.
Or install module
php 7.4
dnf install php74-php-xmlrpc
php 8.3
dnf install php83-php-pecl-xmlrpc
Install
composer require pwsdotru/unoserver-client
Usage
Ping (info)
$ping = new UnoserverClient\Ping($host, $port); if ($ping->call()) { $result = $ping->result(); echo("Ping result:\n"); print_r($result); } else { $errors = $ping->errors(); echo("Ping errors:\n"); print_r($errors); }
Convert
$convert = new UnoserverClient\Convert($host, $port); $convert->setOutputFormat($format); if (false === $convert->loadFile($filename)) { printf("Error. Can't load file.\n%s\n", implode("\n", $convert->errors())); exit(3); } if ($convert->call()) { $resultfile = $filename . "." . $format; if ($convert->saveFile($resultfile)) { printf("Convert result: %s\n", $resultfile); } else { $errors = $convert->errors(); echo("Save result errors:\n"); print_r($errors); } } else { $errors = $convert->errors(); echo("Convert errors:\n"); print_r($errors); }
Compare
$compare = new UnoserverClient\Compare($host, $port); $compare->setOutputFormat($format); if (false === $compare->loadOldFile($oldname)) { printf("Error. Can't load old file: %s.\n%s\n", $oldname, implode("\n", $compare->errors())); exit(3); } if (false === $compare->loadNewFile($newname)) { printf("Error. Can't load new file %s.\n%s\n", $newname, implode("\n", $compare->errors())); exit(3); } if ($compare->call()) { $resultfile = "compareresult." . $format; if ($compare->saveFile($resultfile)) { printf("Compare result: %s\n", $resultfile); } else { $errors = $compare->errors(); echo("Save result errors:\n"); print_r($errors); } } else { $errors = $compare->errors(); echo("Compare errors:\n"); print_r($errors); }
pwsdotru/unoserver-client 适用场景与选型建议
pwsdotru/unoserver-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 04 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「client」 「convert」 「compare」 「UnoServer」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 pwsdotru/unoserver-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pwsdotru/unoserver-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 pwsdotru/unoserver-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Provides a simple decimal/roman number converter
A library that provides a simple infrastructure to create your own converters and to perform any conversion you want
PHP Semantic Versioning Parser and Comparator
Small class for checking ip addresses
Submodule for SilverShop which allows you to compare products in a table.
Convert xml to array
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 28
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2026-04-26