Calling C/C++ library function from PHP

前端 未结 5 1702
余生分开走
余生分开走 2020-11-27 16:50

We have a PHP web app running on a customer\'s machine. For an update, we have a bit of code in C that we\'d like to include as a native opaque library along with the PHP we

5条回答
  •  隐瞒了意图╮
    2020-11-27 17:51

    Another option is to have the C code as a daemon, always running, and the php script connect to it throught unix domain sockets or some existing library to exchange data.

    More info here

提交回复
热议问题