module_init
函数是 PHP 扩展开发中的一个重要概念,它用于初始化模块
example_module.c
的 C 文件,其中包含以下内容:#include "php.h"
// 定义一个简单的函数
PHP_FUNCTION(example_function) {
RETURN_STRING("Hello from example module!");
}
// 定义函数入口
static const zend_function_entry example_functions[] = {
PHP_FE(example_function, NULL)
PHP_FE_END
};
// 定义模块入口
zend_module_entry example_module_entry = {
STANDARD_MODULE_HEADER,
"example",
example_functions,
NULL, // module_init 函数指针,将在下一步中实现
NULL, // module_shutdown 函数指针
NULL, // request_startup 函数指针
NULL, // request_shutdown 函数指针
NULL, // module info 函数指针
"1.0",
STANDARD_MODULE_PROPERTIES
};
ZEND_GET_MODULE(example)
module_init
函数。在 example_module.c
文件中添加以下代码:PHP_MINIT_FUNCTION(example) {
// 在这里添加你的模块初始化代码
php_printf("Example module initialized!\n");
return SUCCESS;
}
zend_module_entry
结构体,将 module_init
函数指针指向刚刚实现的函数:zend_module_entry example_module_entry = {
STANDARD_MODULE_HEADER,
"example",
example_functions,
PHP_MINIT(example), // 更新 module_init 函数指针
NULL, // module_shutdown 函数指针
NULL, // request_startup 函数指针
NULL, // request_shutdown 函数指针
NULL, // module info 函数指针
"1.0",
STANDARD_MODULE_PROPERTIES
};
config.m4
的配置文件,其中包含以下内容:PHP_ARG_ENABLE(example, whether to enable example support,
[ --enable-example Enable example support])
if test "$PHP_EXAMPLE" != "no"; then
PHP_NEW_EXTENSION(example, example_module.c, $ext_shared)
fi
然后,运行以下命令以编译和安装扩展:
phpize
./configure
make
sudo make install
php.ini
文件中启用扩展:extension=example.so
现在,当 PHP 解释器启动时,module_init
函数将被调用,输出 “Example module initialized!”。你可以根据需要在此函数中执行任何模块初始化操作。