当前位置:Gxlcms > PHP教程 > 用C++扩展php时函数重定义redefinition问题

用C++扩展php时函数重定义redefinition问题

时间:2021-07-01 10:21:17 帮助过:1人阅读

问题:我在用C++扩展php时,用到了一些数学库函数如sqr,sqrt等,需要在C++扩展工程的源文件test.cpp中#include ,但是编译时发现这些函数出现了重定义redefinition的问题。

多次尝试后,发现将test.cpp开头的#include "php.h" 去掉时,就没有这个问题了

原因:查询得知,因为php.h中,将很多C++库函数做了inline内联,直接定义在php.h,导致在C++库函数文件stdio.h中的同名函数定义识别为重定义(inline修饰的函数不允许在其他文件定义)

解决:将有重定义函数的C++头文件#include写在#include ”php.h“之前,屏蔽inline函数,在test.cpp中的位置如下:

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include 
#include 
#include 
#include 
#include 
#include 
#include 

#include "php.h"
#include "php_ini.h"
#include "ext/standard/info.h"
#include "php_NearestNeighbors.h"

版权声明:本文为博主原创文章,未经博主允许不得转载。

以上就介绍了用C++扩展php时函数重定义redefinition问题,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行