Can PHP and C++ pass data between each other?

后端 未结 11 1768
悲哀的现实
悲哀的现实 2020-12-14 20:36

I have a lot of mathematical calculations in my PHP script, which can be quite slow at times. I\'m wondering if it\'s possible to pass data from PHP to C++, do the calculati

11条回答
  •  遥遥无期
    2020-12-14 21:03

    php function system() would do the work. Just pass compiled c++ file to the system() and get the returned result.

提交回复
热议问题