实验环境Aliyun

PHP 7.2.6 (cli) (built: May 23 2019 00:47:11) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies with Zend OPcache v7.2.6, Copyright (c) 1999-2018, by Zend Technologies

生成代码

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

1
2
cd ext
./ext_skel --extname=foo

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

修改config.m4配置文件

1
2
cd ./foo
vim ./config.m4

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
dnl If your extension references something external, use with:

dnl PHP_ARG_WITH(foo, for foo support,
dnl Make sure that the comment is aligned:
dnl [  --with-foo             Include foo support])

dnl Otherwise use enable:

PHP_ARG_ENABLE(foo, whether to enable foo support,
Make sure that the comment is aligned:
[  --enable-foo           Enable foo support])

代码实现

修改foo.c文件

  1. 找到PHP_FUNCTION(confirm_foo_compiled), 在其上面增加如下代码
1
2
3
4
5
6
PHP_FUNCTION(foo)
{
    zend_string *strg;
    strg = strpprintf(0, "hello word");
    RETURN_STR(strg);
}
  1. 找到PHP_FE(confirm_foo_compiled, NULL), 在其上面增加如下代码 PHP_FE(foo, NULL) /* 测试 */
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
/* {{{ foo_functions[]
 *
 * Every user visible function must have an entry in foo_functions[].
 */
const zend_function_entry foo_functions[] = { 
        PHP_FE(foo, NULL) /* 测试 */
        PHP_FE(confirm_foo_compiled,    NULL)           /* For testing, remove later. */        PHP_FE_END      /* Must be the last line in foo_functions[] */
};
/* }}} */

编译安装

编译扩展

1
2
3
phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install

修改php.ini

1
2
[say]
extension = say.so

调用测试

php -r "echo foo(), PHP_EOL;"