Maison > Article > développement back-end > 用C++扩展php时函数重定义redefinition问题
问题:我在用C++扩展php时,用到了一些数学库函数如sqr,sqrt等,需要在C++扩展工程的源文件test.cpp中#include
多次尝试后,发现将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 <strong>#include <stdio.h> #include <string.h> #include <math.h> #include <map> #include <vector> #include <set> #include <queue></queue></set></vector></map></math.h></string.h></stdio.h></strong> #include "php.h" #include "php_ini.h" #include "ext/standard/info.h" #include "php_NearestNeighbors.h"
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了用C++扩展php时函数重定义redefinition问题,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。