使用VC++开发PHP扩展注意事项

发表于:2007-06-11来源:作者:点击数: 标签:
一、默认情况下,C++是使用.cpp作为扩展名的,而PHP是用C写的,因此必须使用C++提供的C连接交换指定符号extern "C"来解决这个问题,以下两部分语句必须被包含: extern "C" { #include " php .h" #include "php_ini.h" #include "ext/standard/info.h" ... //
一、默认情况下,C++是使用.cpp作为扩展名的,而PHP是用C写的,因此必须使用C++提供的C连接交换指定符号extern "C"来解决这个问题,以下两部分语句必须被包含:

extern "C" {

#include "php.h"

#include "php_ini.h"

#include "ext/standard/info.h"

... // 其他C头文件

}



extern "C" {

#ifdef COMPILE_DL_MYEXT

ZEND_GET_MODULE(myext)

#endif

}

二、STL模版定义是不能被包含在C连接交换指定符的,而PHP需用到math.h这个头文件,因此编译的时候会产生math.h(514) error c2894: templates cannot be declared to have 'C' linkage的错误信息,要解决这个问题,需在你的CPP文件头部也就是extern "C"连接符之前加入以下代码:

#ifdef WIN32

#include <math.h>

#endif

三、同C中一样,必须先在头文件(如:php_myext.h)中申明所有函数原型,如果没有使用头文件,那么必须在CPP文件(如:ext.cpp)的zend function结构之间申明所有函数原型,也就是在如下代码之前:

function_entry myext_functions[] = {

PHP_FE(confirm_myext_compiled, NULL) /* For testing, remove later. */

{NULL, NULL, NULL}

};

原文转自:http://www.ltesting.net

评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)
...