PHP: How To Call Standard Library Functions

前端 未结 4 1407
遥遥无期
遥遥无期 2021-02-09 02:27

I\'m starting with PHP for dynamic web pages. I have some libraries written in ANSI C for getting/setting parameters and other proprietary stuff. I wonder, is there a simple sol

4条回答
  •  余生分开走
    2021-02-09 03:02

    You could also have gearman act as an intermediary.

    Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work. It allows you to do work in parallel, to load balance processing, and to call functions between languages. It can be used in a variety of applications, from high-availability web sites to the transport of database replication events. In other words, it is the nervous system for how distributed processing communicates.

提交回复
热议问题