我对在 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", ¶mValue) == 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 扩展。