简单php扩展
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单php扩展相关的知识,希望对你有一定的参考价值。
hello word extension
;下载php7源代码 进入到ext目录利用ext_skel脚本 生成扩展框架
![技术分享](https://note.wiz.cn/api/document/files/unzip/9761b540-f977-4ded-98fd-265fe8338235/275ea053-c380-4926-8c2c-f2a3ed77679b.1435/index_files/cd63c5ad-d3ca-498d-a9a1-fd580051156d.png)
;修改config.m4 把 PHP_ARG_WITH 前面的dnl去掉
![技术分享](https://note.wiz.cn/api/document/files/unzip/9761b540-f977-4ded-98fd-265fe8338235/275ea053-c380-4926-8c2c-f2a3ed77679b.1435/index_files/bee05ddc-bdcb-44ae-a54f-8bfbb2b2351d.png)
;在php_.....h头文件中增加一个函数声明
![技术分享](https://note.wiz.cn/api/document/files/unzip/9761b540-f977-4ded-98fd-265fe8338235/275ea053-c380-4926-8c2c-f2a3ed77679b.1435/index_files/0f4e8bac-965b-4a29-8727-7d9121f30aab.png)
;打开.c文件实现声明的函数
![技术分享](https://note.wiz.cn/api/document/files/unzip/9761b540-f977-4ded-98fd-265fe8338235/275ea053-c380-4926-8c2c-f2a3ed77679b.1435/index_files/2ea6bd0c-d8c7-4960-b535-e9599cb03f1c.png)
;在扩展函数functions数组中增加一个函数
![技术分享](https://note.wiz.cn/api/document/files/unzip/9761b540-f977-4ded-98fd-265fe8338235/275ea053-c380-4926-8c2c-f2a3ed77679b.1435/index_files/412acb36-059f-421f-af6d-29ff496ebce9.png)
;扩展目录执行phpize生成可执行脚本configure,
执行./configure 指定php目录 默认安装不需要指定
make 执行makefile生成.so共享库
;修改php.ini 最后增加
[array_square_sum] extension=array_square_sum.so
![技术分享](https://note.wiz.cn/api/document/files/unzip/9761b540-f977-4ded-98fd-265fe8338235/275ea053-c380-4926-8c2c-f2a3ed77679b.1435/index_files/76199d99-653e-4554-8f4b-7417d9b2bf14.png)
;跑脚本测试扩展函数 ,如.so找不到,就根据报出的目录把扩展目录中modules中的.so文件拷贝过去
php -f test.php
PHP
Warning: PHP Startup: Unable to load dynamic library
‘/usr/lib/php/20151012/array_square_sum.so‘ -
/usr/lib/php/20151012/array_square_sum.so: cannot open shared object
file: No such file or directory in Unknown on line 0
[email protected]:/usr/local/src/php-7.0.1/ext/array_square_sum/modules$ ls
array_square_sum.so test.php
[email protected]:/usr/local/src/php-7.0.1/ext/array_square_sum/modules$
cp array_square_sum.so /usr/lib/php/20151012
;打印出hello world
![技术分享](https://note.wiz.cn/api/document/files/unzip/9761b540-f977-4ded-98fd-265fe8338235/275ea053-c380-4926-8c2c-f2a3ed77679b.1435/index_files/9de37c81-bb35-4867-b622-e8ca7396fa8d.png)
以上是关于简单php扩展的主要内容,如果未能解决你的问题,请参考以下文章