一步一步开发PHP扩展(1):HELLO WORLD

这几天赋闲在家,一方面投递简历找工作,另一方面也顺便用树莓派玩玩tensorflow。玩的过程中就发现一个问题。tensorflow的大部分教程都是基于python语言的,少部分基于C语言和go语言。很少见有人发布用PHP玩tensorflow的。

于是就冒出想法开发一个PHP的tensorflow扩展,让PHP直接调用tensorflow的函数。事实上大家不用费劲的去做,原因有2:一是tensorflow有JS版的,二是PHP属于后端,即使扩展了tensorflow也会给服务器增加不必要的压力。而我们完全是可以把运算的压力转嫁给客户端去做。

php7扩展开发教程

因此本系列笔记主要教喜欢折腾的朋友开发自己的PHP扩展。废话不多说。开始正文。

开发环境:PHP7.0 (需源码编译安装)

实验目标:给PHP7增加一个函数say();调用时输出“hello world”。

  1. <?php
  2.     echo say();
  3. ?>
  4. //输出内容
  5. hello word

操作步骤:

1、自动生成扩展代码。

PHP为我们提供了生成基本代码的工具 ext_skel。这个工具在PHP源代码的./ext目录下。

  1. $ cd php_src/ext/
  2. $ ./ext_skel --ext say

ext参数的值就是扩展名称。执行ext_skel命令后,这样在当前目录下会生成一个与扩展名一样的目录。

2、修改config.m4配置文件

config.m4的作用就是配合phpize工具生成configure文件。configure文件是用于环境检测的。检测扩展编译运行所需的环境是否满足。现在我们开始修改config.m4文件。

打开,config.m4文件后,你会发现这样一段文字。

  1. dnl If your extension references something external, use with:
  2. dnl PHP_ARG_WITH(say, for say support,
  3. dnl Make sure that the comment is aligned:
  4. dnl [  --with-say             Include say support])
  5. dnl Otherwise use enable:
  6. dnl PHP_ARG_ENABLE(say, whether to enable say support,
  7. dnl Make sure that the comment is aligned:
  8. dnl [  --enable-say           Enable say support])

其中,dnl 是注释符号。上面的代码说,如果你所编写的扩展如果依赖其它的扩展或者lib库,需要去掉PHP_ARG_WITH相关代码的注释。否则,去掉 PHP_ARG_ENABLE相关代码段的注释。我们编写的扩展不需要依赖其他的扩展和lib库。因此,我们去掉PHP_ARG_ENABLE前面的注释。去掉注释后的代码如下:

  1. dnl If your extension references something external, use with:
  2.  dnl PHP_ARG_WITH(say, for say support,
  3.  dnl Make sure that the comment is aligned:
  4.  dnl [  --with-say             Include say support])
  5.  dnl Otherwise use enable:
  6.  PHP_ARG_ENABLE(say, whether to enable say support,
  7.  Make sure that the comment is aligned:
  8.  [  --enable-say           Enable say support])

3、编写say函数

修改say.c文件。实现say方法。找到PHP_FUNCTION(confirm_say_compiled),在其上面增加如下代码:

  1. PHP_FUNCTION(say)
  2. {
  3.         zend_string *strg;
  4.         strg = strpprintf(0, "hello word");
  5.         RETURN_STR(strg);
  6. }

找到 PHP_FE(confirm_say_compiled, 在上面增加如下代码:

  1. PHP_FE(say, NULL)

修改后的代码如下:

  1. const zend_function_entry say_functions[] = {
  2.      PHP_FE(say, NULL)       /* For testing, remove later. */
  3.      PHP_FE(confirm_say_compiled,    NULL)       /* For testing, remove later. */
  4.      PHP_FE_END  /* Must be the last line in say_functions[] */
  5.  };
  6.  /* }}} */

4、编译安装

PHP编译扩展的步骤如下:

  1. $ phpize
  2. $ ./configure
  3. $ make && make install

修改php.ini文件,增加如下代码:

  1. [say]
  2. extension = say.so

然后执行,php -m 命令。在输出的内容中,你会看到say字样。

5、调用测试

自己编写一段PHP代码,测试下say函数的输出。这部分在笔记的开始也有示例。

怎么样?开发一个PHP扩展是不是很轻松呢?当然了这只是入门,明天有时间为大家分享PHP扩展中参数的传递。敬请关注!

你想把广告放到这里吗?

发表评论

您必须 登录 才能发表留言!