php扩展开发,从零开始
实现简单helloworld
- 利用PHP源码中的ext_skel生成扩展骨架,我们创建一个叫myext的扩展
//7.2等低版本
./ext_skel --extname=myext
//7.3.9
php ext_skel.php --ext myext
//7.4未查看
- 修改config.m4
- config.w32是windows下扩展开发所需要修改的
- dnl 开头的都为注释,可以去除,只有三个部分代码用的到,如下,详细可看中文注释
dnl If your extension references something external, use with:
dnl PHP_ARG_xxx都是zend引擎带的,如果依赖外部的lib库或者扩展,需要这块
dnl PHP_ARG_WITH(myext, for myext support,
dnl Make sure that the comment is aligned:
dnl [ --with-myext Include myext support])
dnl Otherwise use enable:
dnl 我们只需要使用这一部分
PHP_ARG_ENABLE(myext, whether to enable myext support,
[ --enable-myext Enable myext support], no)
if test "$PHP_MYEXT" != "no"; then
AC_DEFINE(HAVE_MYEXT, 1, [ Have myext support ])
dnl 定义一个新的参数,参数1为函数名,参数2为依赖的文件(可以引入多个),其他不用修改
PHP_NEW_EXTENSION(myext, myext.c, $ext_shared)
fi
- 修改myext.c
- 使用PHP_FUNCTION注册函数
- 在zend_function_entry myext_functions使用PHP_FE注册即可
/* myext中自动生成的myext.c文件*/
//引入一些宏等,类似php include
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "php.h"
#include "ext/standard/info.h"
#include "php_myext.h"
/* For compatibility with older PHP versions */
#ifndef ZEND_PARSE_PARAMETERS_NONE
#define ZEND_PARSE_PARAMETERS_NONE() \
ZEND_PARSE_PARAMETERS_START(0, 0) \
ZEND_PARSE_PARAMETERS_END()
#endif
//参数为函数名 PHP_FUNCTION 定义php函数
PHP_FUNCTION(hello_world)
{
zend_string *strg;
strg = strpprintf(0,"Hello Wrold!");
RETURN_STR(strg); //返回string
}
/* {{{ PHP_RINIT_FUNCTION
*/
PHP_RINIT_FUNCTION(myext)
{
#if defined(ZTS) && defined(COMPILE_DL_MYEXT)
ZEND_TSRMLS_CACHE_UPDATE();
#endif
return SUCCESS;
}
/* }}} */
/* {{{ PHP_MINFO_FUNCTION
*/
PHP_MINFO_FUNCTION(myext)
{
php_info_print_table_start();
php_info_print_table_header(2, "myext support", "enabled");
php_info_print_table_end();
}
/* }}} */
/* {{{ arginfo
*/
ZEND_BEGIN_ARG_INFO(arginfo_myext_test1, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO(arginfo_myext_test2, 0)
ZEND_ARG_INFO(0, str)
ZEND_END_ARG_INFO()
/* }}} */
/* {{{ myext_functions[]
*/
static const zend_function_entry myext_functions[] = {
//函数注册,写完后,需要在这里注册才能使用
PHP_FE(hello_world,NULL)
PHP_FE_END
};
/* }}} */
/* {{{ myext_module_entry
*/
zend_module_entry myext_module_entry = {
STANDARD_MODULE_HEADER,
"myext", /* Extension name */
myext_functions, /* zend_function_entry */
NULL, /* PHP_MINIT - Module initialization */
NULL, /* PHP_MSHUTDOWN - Module shutdown */
PHP_RINIT(myext), /* PHP_RINIT - Request initialization */
NULL, /* PHP_RSHUTDOWN - Request shutdown */
PHP_MINFO(myext), /* PHP_MINFO - Module info */
PHP_MYEXT_VERSION, /* Version */
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_MYEXT
# ifdef ZTS
ZEND_TSRMLS_CACHE_DEFINE()
# endif
ZEND_GET_MODULE(myext)
#endif
- phpize
- ./configure
- make && make install 会输出扩展安装的目录,需要复制下来,后续添加到php.ini
- 修改php.ini加载myext.so扩展
- 调用hello_world函数进行测试
查看扩展
[root@localhost lib]# php -m | grep myext
myext
测试的输入输出
[root@localhost lib]# cat text.php