OPC-UA gains traction in smart manufaturing. I need to connect to a OPC-UA server from PHP. Since I could not find an open sourced native PHP client, there are several ways I am thinking about:
- writing a native client in PHP from scratch
- wrapping a C/C++ library in PHP
- calling an UPC-UA commandline executable client using exec()
- transfering a C/C++ , JAVA or Python OPC-UA client to PHP line-by-line
Are there other ways to go?
Is anybody working on an open source implementation in PHP?
How to proceed? What would be your choice? And how do you expect the caveats and efforts for these variants?