在Windows上创建.so文件,以便在PHP中使用C ++静态库

时间:2012-10-10 13:22:43

标签: php c++ windows eclipse makefile

实际上我们需要在PHP中使用C ++ Static Library,因为我们需要创建.so。 具体来说我们正在开发Windows平台,所以make / ./configure等在这里不能用于进行php扩展,或者我们无法解决这个问题。

在Windows上为C ++静态库创建“.so”文件时的任何帮助 在Windows上为C ++静态库创建make和配置文件的步骤。

提前感谢....

2 个答案:

答案 0 :(得分:2)

扩展名为.so的文件通常 unix-based dynamic libraries Windows中的等效项通常是 <。em> .dll文件 对于PHP扩展,最好阅读the manual

相关问题:
c++ php and static library
Extending PHP with C++?

答案 1 :(得分:1)

你在windows环境中使用dll

 LoadModule php5_module "c:/wamp/bin/php/php5.3.5/php5apache2_2.dll"

作为httpd.conf中的一个例子 或

 extension=php_gd2.dll
PHP.ini中的

。如果您需要在unix环境中使用gcc重新编译代码