techdock/opcua-webapi-client
Composer 安装命令:
composer require techdock/opcua-webapi-client
包简介
PHP client for OPC UA Web API
README 文档
README
A PHP client library for interacting with OPC UA servers via the OPC UA WebAPI. This library provides a simple and intuitive interface for reading values, browsing the address space, and performing other OPC UA operations over HTTP/HTTPS.
Features
- Full support for OPC UA WebAPI operations
- Read node values (single and multiple)
- Browse the OPC UA address space
- Support for various node ID formats (numeric, string, namespace URIs)
- Comprehensive model classes for all OPC UA data types
- PSR-7 compatible HTTP client (Guzzle)
- Well-tested with integration examples
Requirements
- PHP 8.1 or higher
- ext-curl
- ext-json
- ext-mbstring
- Guzzle HTTP client
Installation
Install via Composer:
composer require techdock/opcua-webapi-client
Quick Start
<?php require_once __DIR__ . '/vendor/autoload.php'; use TechDock\OpcUaWebApiClient\Api\DefaultApi; use TechDock\OpcUaWebApiClient\Configuration; use TechDock\OpcUaWebApiClient\Model\ReadRequest; use TechDock\OpcUaWebApiClient\Model\ReadValueId; use TechDock\OpcUaWebApiClient\Model\RequestHeader; use GuzzleHttp\Client; // Configure the API endpoint $config = Configuration::getDefaultConfiguration(); $config->setHost('https://webapi.opcfoundation.org/opcua'); // Create HTTP client $httpClient = new Client([ 'timeout' => 30.0, 'connect_timeout' => 10.0, ]); // Initialize API $api = new DefaultApi($httpClient, $config); // Create a read request $readRequest = new ReadRequest([ 'max_age' => 0, 'nodes_to_read' => [ new ReadValueId([ 'node_id' => 'i=2258', // Server.ServerStatus.CurrentTime 'attribute_id' => 13 // Value attribute ]) ], 'request_header' => new RequestHeader([ 'request_handle' => 1, 'timestamp' => new \DateTime(), 'timeout_hint' => 60000 ]) ]); // Execute the read operation $response = $api->read($readRequest); // Access the result $result = $response->getResults()[0]; echo "Server time: " . $result->getValue() . "\n";
Usage Examples
Reading a Single Node Value
use TechDock\OpcUaWebApiClient\Model\ReadRequest; use TechDock\OpcUaWebApiClient\Model\ReadValueId; use TechDock\OpcUaWebApiClient\Model\RequestHeader; $readRequest = new ReadRequest([ 'max_age' => 0, 'nodes_to_read' => [ new ReadValueId([ 'node_id' => 'i=2258', // Server.ServerStatus.CurrentTime 'attribute_id' => 13 // Value attribute ]) ], 'request_header' => new RequestHeader([ 'request_handle' => 1, 'timestamp' => new \DateTime(), 'timeout_hint' => 60000 ]) ]); $response = $api->read($readRequest); $value = $response->getResults()[0]->getValue();
Reading Multiple Node Values
Reading multiple nodes in a single request is more efficient:
$readRequest = new ReadRequest([ 'max_age' => 0, 'nodes_to_read' => [ new ReadValueId([ 'node_id' => 'i=2258', // Server.ServerStatus.CurrentTime 'attribute_id' => 13 ]), new ReadValueId([ 'node_id' => 'i=2259', // Server.ServerStatus.State 'attribute_id' => 13 ]) ], 'request_header' => new RequestHeader([ 'request_handle' => 1, 'timestamp' => new \DateTime(), 'timeout_hint' => 60000 ]) ]); $response = $api->read($readRequest); foreach ($response->getResults() as $index => $result) { echo "Node {$index}: " . $result->getValue() . "\n"; }
Browsing the Address Space
use TechDock\OpcUaWebApiClient\Model\BrowseRequest; use TechDock\OpcUaWebApiClient\Model\BrowseDescription; $browseRequest = new BrowseRequest([ 'requested_max_references_per_node' => 20, 'nodes_to_browse' => [ new BrowseDescription([ 'node_id' => 'i=84', // Root folder 'browse_direction' => 0, // Forward 'reference_type_id' => 'i=33', // Hierarchical references 'include_subtypes' => true, 'result_mask' => 63 // All fields ]) ], 'request_header' => new RequestHeader([ 'request_handle' => 1, 'timestamp' => new \DateTime(), 'timeout_hint' => 60000 ]) ]); $response = $api->browse($browseRequest); // Access child nodes $references = $response->getResults()[0]->getReferences(); foreach ($references as $reference) { $displayName = $reference->getDisplayName()->getText(); echo "Found node: {$displayName}\n"; }
Using Namespace URIs
For nodes with custom namespaces:
$browseDescription = new BrowseDescription([ 'node_id' => 'nsu=urn:opcfoundation.org:2024-10:starterkit:measurements;s=Measurements', 'browse_direction' => 0, 'reference_type_id' => 'i=33', 'include_subtypes' => true, 'result_mask' => 63 ]);
Error Handling
try { $response = $api->read($readRequest); // Check for service-level errors $serviceResult = $response->getResponseHeader()->getServiceResult(); if ($serviceResult && $serviceResult->getCode() !== null && $serviceResult->getCode() !== 0) { throw new \Exception('Operation failed with error code: ' . $serviceResult->getCode()); } // Check individual result status codes foreach ($response->getResults() as $result) { if ($result->getStatusCode() && $result->getStatusCode()->getCode() !== 0) { echo "Warning: Result has non-Good status code\n"; } } } catch (\TechDock\OpcUaWebApiClient\ApiException $e) { echo "API Exception: " . $e->getMessage() . "\n"; echo "HTTP Status Code: " . $e->getCode() . "\n"; }
Configuration
Custom Timeouts
use GuzzleHttp\Client; $httpClient = new Client([ 'timeout' => 60.0, // Overall timeout 'connect_timeout' => 15.0, // Connection timeout 'debug' => false // Enable for HTTP debug output ]); $api = new DefaultApi($httpClient, $config);
Custom Host
$config = Configuration::getDefaultConfiguration(); $config->setHost('https://your-opcua-server.example.com/opcua');
API Reference
The DefaultApi class provides the following main methods:
read(ReadRequest $request)- Read one or more node valueswrite(WriteRequest $request)- Write values to nodesbrowse(BrowseRequest $request)- Browse the address spacebrowseNext(BrowseNextRequest $request)- Continue browsingtranslateBrowsePathsToNodeIds(TranslateBrowsePathsToNodeIdsRequest $request)- Translate browse pathscall(CallRequest $request)- Call methods on objectscreateSession(CreateSessionRequest $request)- Create a sessionactivateSession(ActivateSessionRequest $request)- Activate a sessioncloseSession(CloseSessionRequest $request)- Close a session
For detailed information about request and response models, see the classes in the src/Model directory.
Testing
Unit Tests
Run the unit tests:
composer test
Or directly with PHPUnit:
./vendor/bin/phpunit
Live Integration Tests
The library includes integration tests that demonstrate real usage against the public OPC Foundation WebAPI:
composer test:live
Or:
ENABLE_LIVE_TESTS=1 ./vendor/bin/phpunit --group live
Enable HTTP debugging:
ENABLE_LIVE_TESTS=1 DEBUG_HTTP=1 ./vendor/bin/phpunit --group live
The integration tests serve as comprehensive usage examples and can be found in test/Integration/LiveApiTest.php.
Node ID Formats
OPC UA supports several node ID formats:
- Numeric:
i=2258(namespace 0, numeric ID 2258) - String:
s=MyNode(namespace 0, string identifier) - GUID:
g=09087e75-8e5e-499b-954f-f2a9603db28a - Opaque:
b=M/RbKBsRVkePCePcx24oRA==(base64 encoded) - Namespace URI:
nsu=urn:example:namespace;s=MyNode
Common OPC UA Node IDs
Here are some commonly used OPC UA node IDs:
i=84- Root folderi=85- Objects folderi=86- Types folderi=87- Views folderi=2253- Server objecti=2254- Server.ServerArrayi=2255- Server.NamespaceArrayi=2256- Server.ServerStatusi=2258- Server.ServerStatus.CurrentTimei=2259- Server.ServerStatus.State
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
- Issues: GitHub Issues
- Email: info@techdock.ch
Credits
Developed and maintained by TechDock.
This library is built on the OpenAPI specification provided by the OPC Foundation. The OPC UA WebAPI specification (introduced in version 1.05.04) enables standardized RESTful API access to OPC UA servers, making OPC UA more accessible to modern web and cloud applications.
Related Resources
- OPC Foundation
- OPC UA Specification
- OPC UA WebAPI Swagger Documentation - Live interactive API documentation
- OPC UA WebAPI StarterKit - Official sample applications and OpenAPI definitions
- OPC UA and OpenAPI: Understanding the Integration - Comprehensive blog post explaining how OpenAPI simplifies OPC UA development
- OPC UA Part 6: NodeId String Format - Specification for the string representations used in this library
techdock/opcua-webapi-client 适用场景与选型建议
techdock/opcua-webapi-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4 次下载、GitHub Stars 达 2, 最近一次更新时间为 2025 年 10 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「client」 「webapi」 「opcua」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 techdock/opcua-webapi-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 techdock/opcua-webapi-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 techdock/opcua-webapi-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The SDK of Rakuten Web Service
Add the resource system to symfony application
Hprose asynchronous client & standalone server based on swoole
Mock PSR-18 HTTP client
Asynchronous MQTT client built on React
Client for Google Directions API to add interpolated points to a route consisting of given coordinates.
统计信息
- 总下载量: 4
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 23
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-10-23