zuocheng-liu / pni

PHP Native Interface(PNI), a PHP extension that enables PHP code to call and be called by native applications (programs specific to a hardware and operating system platform) and libraries written in other languages such as C, C++ and assembly.
64 stars 11 forks source link

在windows上可以尝试cygwin来编译 #5

Open a251701981 opened 5 years ago

a251701981 commented 5 years ago

但是我看到windows上的php7.4已经直接带了php-ffi这个扩展了,也可以调用外部dll了

zuocheng-liu commented 5 years ago

之前在cygwin上面用gcc编译过,但是用PNI调用动态链接库还是会报错。

zuocheng-liu commented 5 years ago

但是我看到windows上的php7.4已经直接带了php-ffi这个扩展了,也可以调用外部dll了 嗯,已经有新的机制来解决怎么调用c语言了。感觉php-ffi 有点类似php-lua,把c代码内嵌到php代码里,每次运行都要编译一下,官网也说效率会慢一下。