2023年7月3日发(作者:)
快速开发⼀个PHP扩展(SO组件)教程本⽂通过⾮常快速的⽅式讲解了如何制作⼀个PHP 5.2 环境的扩展(PHP Extension),希望能够在图⽂的⽅式下让想快速学习的朋友了解⼀下制作过程。
需求:⽐如开发⼀个叫做 lanhaicode 的扩展,扩展⾥就⼀个函数 lanhai_test(),输⼊⼀个字符串,函数返回:Your input string:xxxxx。
要求:了解C/C++编程,熟悉PHP编程
环境:下载⼀份php对应版本的源码,我这⾥是 php-5.2.17,先正常安装php,假设我们的php安装在 /usr/local/php ⽬录,源码在/root/soft/php/php-5.2.17/,现在开始!
php-5.2.17下载地址:
/down/soft/2
解压: tar -2
步骤⼀:⽣成扩展框架
cd /root/soft/php/php-5.2.17/ext./ext_skel --extname=lanhaicodecd /root/soft/php/php-5.2.17/ext/lanhaicodevi config.m4打开⽂件后去掉 dnl ,获得下⾯的信息:
PHP_ARG_ENABLE(lanhaicode, whether to enable lanhaicode support,[ --enable-lanhaicode Enable lanhaicode support])保存退出.
第⼆步:编写代码
vi php_lanhaicode.h找到:PHP_FUNCTION(confirm_lanhaicode_compiled); 新增⼀⾏:
PHP_FUNCTION(lanhai_test);
保存退出。
vi lanhaicode.c数组⾥增加我们的函数,找到 zend_function_entry lanhaicode_functions[],增加:
PHP_FE(lanhaicode, NULL)再到 lanhaicode.c ⽂件最后⾯增加如下代码:
PHP_FUNCTION(lanhai_test){char *arg = NULL;int arg_len, len;char *strg;if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &arg, &arg_len) == FAILURE) {return;}len = spprintf(&strg, 0, "Your input string: %sn", arg);RETURN_STRINGL(strg, len, 0);}保存退出。
第三步:编译安装
cd /root/soft/php/php-5.2.17/ext/lanhaicode/usr/local/php/bin/phpize./configure --with-php-config=/usr/local/php/bin/php-configmakemake testmake install(如果不知phpize所在位置,使⽤命令find / -name "phpize" 进⾏搜索。如果没有搜索到,请先安装php-devel,命令:yum -y installphp-devel)
./configure过程中出现如下错误:
checking no
checking no
checking no
checking no
configure: error: no acceptable C compiler found in $PATH
See `' for more details.
解决办法:安装GCC软件套件,执⾏命令:
yum install -y gcc
现在看看是不是有个 /usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/
编辑,把扩展加⼊进去:
vi /usr/local/php/lib/在[PHP]模块下增加:
extension = 保存退出。
注意:如果你不存在扩展⽂件⽬录,或者安装报错,那么可以⾃⾏建⽴这个⽬录,然后把扩展拷贝到⽬录下,然后记得把 ⽂件中的extension_dir 修改为该⽬录:
extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/"
第四步:检查安装结果
现在看看模块加载了没有:
/usr/local/php/bin/php -m,应该会打印出:
[PHP Modules]
...
lanhaicode
...
[Zend Modules]
然后重启apache,输出 phpinfo() ,应该能够看到:
lanhaicode
lanhaicode support enabled
看看函数是否存在并且调⽤,在web⽬录下建⽴:
";print_r(get_loaded_extensions());print_r(get_extension_funcs('lanhaicode'));echo lanhai_test('My first php extension');echo "";>
发布者:admin,转转请注明出处:http://www.yc00.com/news/1688379533a129197.html
评论列表(0条)