gpt4 book ai didi

php - 如何开始用 C++ 编写 PHP5 扩展

转载 作者:IT老高 更新时间:2023-10-28 21:53:32 25 4
gpt4 key购买 nike

我正在编写一个 PHP5 扩展,虽然我可以用 C 编写它,但使用 C++ 并利用 STL 和 Boost 会更容易。

问题是,tutorials我只见过处理 C,我正在寻找一个使用 C++ 的基本示例

这是我迄今为止尝试过的:

config.m4

[ --enable-hello   Enable Hello World support])

if test "$PHP_HELLO" = "yes"; then
AC_DEFINE(HAVE_HELLO, 1, [Whether you have Hello World])
PHP_NEW_EXTENSION(hello, hello.cpp, $ext_shared)
fi

php_hello.h

注意我尝试将 PHP 接口(interface)的位声明为 extern "C"

#ifndef PHP_HELLO_H
#define PHP_HELLO_H 1


extern "C" {

#define PHP_HELLO_WORLD_VERSION "1.0"
#define PHP_HELLO_WORLD_EXTNAME "hello"

PHP_FUNCTION(hello_world);

extern zend_module_entry hello_module_entry;
#define phpext_hello_ptr &hello_module_entry

}
#endif

你好.cpp

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

#include "php.h"
#include "php_hello.h"

static function_entry hello_functions[] = {
PHP_FE(hello_world, NULL)

{NULL, NULL, NULL}
};

zend_module_entry hello_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
PHP_HELLO_WORLD_EXTNAME,
hello_functions,
NULL,
NULL,
NULL,
NULL,
NULL,
#if ZEND_MODULE_API_NO >= 20010901
PHP_HELLO_WORLD_VERSION,
#endif
STANDARD_MODULE_PROPERTIES
};

#ifdef COMPILE_DL_HELLO
ZEND_GET_MODULE(hello)
#endif

PHP_FUNCTION(hello_world)
{
RETURN_STRING("Hello World", 1);
}

....这是我的构建错误:

如果我对它进行 phpize、配置和制作,我会得到以下信息(为清晰起见重新格式化)

$ make
/bin/bash /home/paul/php5/php-5.2.8/ext/hello2/libtool
--mode=compile
-I.
-I/home/paul/php5/php-5.2.8/ext/hello2 -DPHP_ATOM_INC
-I/home/paul/php5/php-5.2.8/ext/hello2/include
-I/home/paul/php5/php-5.2.8/ext/hello2/main
-I/home/paul/php5/php-5.2.8/ext/hello2
-I/usr/local/include/php
-I/usr/local/include/php/main
-I/usr/local/include/php/TSRM
-I/usr/local/include/php/Zend
-I/usr/local/include/php/ext
-I/usr/local/include/php/ext/date/lib
-DHAVE_CONFIG_H
-c /home/paul/php5/php-5.2.8/ext/hello2/hello.cpp
-o hello.lo
libtool: compile: unrecognized option `-I.'
libtool: compile: Try `libtool --help' for more information.
make: *** [hello.lo] Error 1

我怀疑我需要对 config.m4 做更多的工作才能创建一个有效的 makefile,但我对 GCC 工具链还很陌生。

如果有帮助,我只针对 php 5.2.6+,并且只针对 Linux(特别是 Ubuntu 8.04)。我的构建环境是使用 Ubuntu 8.10,使用 gcc 4.3.2

感激地收到指点!

最佳答案

发布后我遇到了CodeGen_PECL它从基于 XML 的扩展描述创建骨架扩展。这包括一个标签让它输出 C++

除了确保头文件使用 extern "C"之外,生成的 cpp 文件还确保 ZEND_GET_MODULE(hello) 也在 extern "C" block 内。

不出所料,最大的不同在于 m4 文件,如下所示:

dnl
dnl $ Id: $
dnl

PHP_ARG_ENABLE(hello, whether to enable hello functions,
[ --enable-hello Enable hello support])

if test "$PHP_HELLO" != "no"; then
PHP_REQUIRE_CXX
AC_LANG_CPLUSPLUS
PHP_ADD_LIBRARY(stdc++,,HELLO_SHARED_LIBADD)
export OLD_CPPFLAGS="$CPPFLAGS"
export CPPFLAGS="$CPPFLAGS $INCLUDES -DHAVE_HELLO"

AC_MSG_CHECKING(PHP version)
AC_TRY_COMPILE([#include <php_version.h>], [
#if PHP_VERSION_ID < 40000
#error this extension requires at least PHP version 4.0.0
#endif
],
[AC_MSG_RESULT(ok)],
[AC_MSG_ERROR([need at least PHP 4.0.0])])

export CPPFLAGS="$OLD_CPPFLAGS"


PHP_SUBST(HELLO_SHARED_LIBADD)
AC_DEFINE(HAVE_HELLO, 1, [ ])

PHP_NEW_EXTENSION(hello, hello.cpp , $ext_shared)

fi

所以,如果您遇到同样的问题,请使用 CodeGen_PECL , 或修改上面的 m4 示例(以及确保您在标题和 ZEND_GET_MODULE 宏周围使用了 extern "C")

关于php - 如何开始用 C++ 编写 PHP5 扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/492014/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com