walkor / workerman

An asynchronous event driven PHP socket framework. Supports HTTP, Websocket, SSL and other custom protocols.
http://www.workerman.net
MIT License
11.17k stars 2.27k forks source link

Is possible to build workerman as a PHP extension such as use zephir #1043

Open louishot opened 3 months ago

louishot commented 3 months ago

Hi guys,

Is possible to build workerman as a PHP extension such as use zephir I just checkout this https://docs.zephir-lang.com/latest/tutorial/#adding-our-first-class

I'd like to build my app and workerman into a myapp.so file to protect the source code.

finally echo "extension=myapp.so" > /etc/php/7.4/cli/conf.d/22-myapp.ini

<?php

Myapp\Myapp::run();

Thanks