0

我对在 C 代码中创建 PHP 扩展感到震惊。我已经参考了链接并遵循了他们给出的步骤:

http://netindonesia.net/blogs/risman/archive/2008/06/15/part-2-writing-php-extension

http://devzone.zend.com/303/extension-writing-part-i-introduction-to-php-and-zend/

我仍然遇到创建扩展的问题。

我在 Windows 7 和 Visual Studio 2010 Professional 中使用 XAMPP 和 PHP 版本 5.4.16 来创建和编译 C++ 代码。

我正在使用以下 C++ 代码:

 #include "stdio.h"
 #include "stdafx.h"
 /* declaration of functions to be exported */
 ZEND_FUNCTION(DoubleUp);

/* compiled function list so Zend knows what's in this module */
zend_function_entry FirstPHPExtModule_functions[] = {
     ZEND_FE(DoubleUp, NULL)
     {NULL, NULL, NULL}
};

/* compiled module information */
zend_module_entry FirstPHPExtModule_module_entry = {
     STANDARD_MODULE_HEADER,
     "FirstPHPExt Module",
     FirstPHPExtModule_functions,
     NULL, NULL, NULL, NULL, NULL,
     NO_VERSION_YET, STANDARD_MODULE_PROPERTIES
};

/* implement standard "stub" routine to introduce ourselves to Zend */
ZEND_GET_MODULE(FirstPHPExtModule)

/* DoubleUp function */
/* This method takes 1 parameter, a long value, returns the value multiplied by 2 */
ZEND_FUNCTION(DoubleUp){
   long paramValue = 0;
   if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &paramValue) == FAILURE) {
       RETURN_STRING("Bad parameters!", true);
   }
   paramValue *= 2;
   RETURN_LONG(paramValue);
}

但是,我得到如下错误:

 1>php_myclass.cpp(16): error C2065: 'ZEND_DEBUG' : undeclared identifier
 1>
 1>Build FAILED. 

请帮助我在 Windows 7 环境中创建 PHP 扩展。

4

1 回答 1

0

在您的项目定义ZEND_DEBUG=0或项目属性中定义,具体取决于您使用的是什么。或者,在 stdafx.h 中,设置

#ifndef ZEND_DEBUG
#define ZEND_DEBUG 0
#endif

如果您使用的是视觉工作室

#ifdef _DEBUG
#define ZEND_DEBUG 1
#else
#define ZEND_DEBUG 0
#endif

因此,如果您在调试模式下构建,zend 调试代码会进入,而在发布中构建会删除所有 zend 调试代码。

注意:确保您的项目中也有ZTS=1,ZEND_WIN32PHP_WIN32定义。

按照本指南设置正确的环境以使用 Visual Studio Visual Studio 构建指南构建 php 扩展。它适用于VC2005,但它或多或少是相同的过程。

于 2013-08-07T07:03:32.463 回答