PHP7扩展开发之hello word实现方法详解
发布:smiling 来源: PHP粉丝网 添加日期:2021-08-30 17:15:18 浏览: 评论:0
这篇文章主要介绍了PHP7扩展开发之hello word实现方法,结合实例形式分析了php7扩展开发的具体步骤与相关操作技巧,涉及针对php底层源码的修改与编译,需要的朋友可以参考下。
本文实例讲述了PHP7扩展开发之hello word实现方法,分享给大家供大家参考,具体如下:
这里是以PHP7作为基础,讲解如何从零开始创建一个PHP扩展,本文主要讲解创建一个扩展的基本步骤都有哪些。示例中,我们将实现如下功能:
- <?php
- echo say();
- ?>
输出内容:
$ php ./test.php
$ hello word
在扩展中实现一个say方法,调用say方法后,输出 hello word。
第一步:生成代码
PHP为我们提供了生成基本代码的工具 ext_skel,这个工具在PHP源代码的./ext目录下。
$ cd php_src/ext/
$ ./ext_skel --extname=say
extname参数的值就是扩展名称。执行ext_skel命令后,这样在当前目录下会生成一个与扩展名一样的目录。
第二步,修改config.m4配置文件
config.m4的作用就是配合phpize工具生成configure文件。configure文件是用于环境检测的。检测扩展编译运行所需的环境是否满足。现在我们开始修改config.m4文件。
$ cd ./say
$ vim ./config.m4
打开,config.m4文件后,你会发现这样一段文字。
- dnl If your extension references something external, use with:
- dnl PHP_ARG_WITH(say, for say support,
- dnl Make sure that the comment is aligned:
- dnl [ --with-say Include say support])
- dnl Otherwise use enable:
- dnl PHP_ARG_ENABLE(say, whether to enable say support,
- dnl Make sure that the comment is aligned:
- dnl [ --enable-say Enable say support])
其中,dnl 是注释符号。上面的代码说,如果你所编写的扩展如果依赖其它的扩展或者lib库,需要去掉PHP_ARG_WITH相关代码的注释。否则,去掉 PHP_ARG_ENABLE 相关代码段的注释。我们编写的扩展不需要依赖其他的扩展和lib库。因此,我们去掉PHP_ARG_ENABLE前面的注释。去掉注释后的代码如下:
- dnl If your extension references something external, use with:
- dnl PHP_ARG_WITH(say, for say support,
- dnl Make sure that the comment is aligned:
- dnl [ --with-say Include say support])
- dnl Otherwise use enable:
- PHP_ARG_ENABLE(say, whether to enable say support,
- Make sure that the comment is aligned:
- [ --enable-say Enable say support])
第三步,代码实现
修改say.c文件。实现say方法。
找到PHP_FUNCTION(confirm_say_compiled),在其上面增加如下代码:
- PHP_FUNCTION(say)
- {
- zend_string *strg;
- strg = strpprintf(0, "hello word");
- RETURN_STR(strg);
- }
找到 PHP_FE(confirm_say_compiled, 在上面增加如下代码:
PHP_FE(say, NULL)
修改后的代码如下:
- const zend_function_entry say_functions[] = {
- PHP_FE(say, NULL) /* For testing, remove later. */
- PHP_FE(confirm_say_compiled, NULL) /* For testing, remove later. */
- PHP_FE_END /* Must be the last line in say_functions[] */
- };
- /* }}} */
第四步,编译安装
编译扩展的步骤如下:
- $ phpize
- $ ./configure
- $ make && make install
修改php.ini文件,增加如下代码:
[say]
extension = say.so
然后执行,php -m 命令。在输出的内容中,你会看到say字样。
第五步,调用测试
自己写一个脚本,调用say方法。看输出的内容是否符合预期。
Tags: PHP7扩展 hello word
相关文章
- ·PHP7扩展开发之基于函数方式使用lib库的方法详解(2021-08-30)
- ·使用php创建word文档的例子(2014-08-26)
- ·简单的php操作word文件实现代码(2014-09-06)
- ·php生成word两种方法(2014-09-08)
- ·php创建word文档代码(2014-09-09)
- ·php导出word文档与excel电子表格的简单示例代码(2020-10-20)
- ·实例详解PHP中html word 互转的方法(2021-07-07)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)