小编给大家分享一下PHP7扩展类怎么实现,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!在php7中,有许许多多的扩展类,今天我们就以person类为例实现doin
小编给大家分享一下PHP7扩展类怎么实现,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
在php7中,有许许多多的扩展类,今天我们就以person类为例实现doing方法和saying方法,有需要的小伙伴可以参考一下。
需要实现的细节
实现一个person类
实现一个doing方法和saying方法
第一个扩展
1创建类的扩展:
[root@boGon ext]# cd /usr/local/src/php-7.0.3/ext[root@bogon ext]# ./ext_skel --extname=person
2 修改配置
[root@bogon ext]# vim person/config.m4dnl PHPARGWITH(person, for person support,dnl Make sure that the comment is aligned:dnl [ --with-person Include person support])
更改为:
PHPARGWITH(person, for person support,dnl Make sure that the comment is aligned:[ --with-person Include person support])
3 实现代码
在php_person.h头中加上
extern zend_class_entry *person_ce;PHP_METHOD(person_ce,__construct);PHP_METHOD(person_ce,saying);PHP_METHOD(person_ce,doing);
在person.c头中加上
ZEND_METHOD(person,__construct){ zval *pThis; pThis = getThis(); zend_printf("construct\n");}ZEND_METHOD(person,__destruct){ zend_printf("destruct\n");}ZEND_METHOD(person,doing){ zend_printf("doing\n");}ZEND_METHOD(person,saying){ zend_printf("saying\n");}//这个函数需要加上声明,去掉了没用的test函数const zend_function_entry person_functions[] = { ZEND_ME(person, __construct, global_config_arg, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR) ZEND_ME(person,doing,NULL,ZEND_ACC_PUBLIC) ZEND_ME(person,saying,NULL,ZEND_ACC_PUBLIC) ZEND_ME(person,__destruct,NULL,ZEND_ACC_PUBLIC|ZEND_ACC_DTOR) PHP_FE_END };//将类和方法注册到zendPHP_MINIT_FUNCTION(person){ zend_class_entry ce; INIT_CLASS_ENTRY(ce, "person", person_functions); person_ce = zend_reGISter_internal_class(&ce TSRMLS_CC); zend_declare_property_null(person_ce,"saying",strlen("saying"),ZEND_ACC_PUBLIC); zend_declare_property_null(person_ce,"doing",strlen("doing"),ZEND_ACC_PUBLIC); return SUCCESS;}
4 编译
* [root@bogon hello]# [root@localhost person]# ./configure && make && make install
5 扩展安装
改更php.ini 加上
[person] extenstion=person.so
6 扩展使用
[root@bogon tests]# cat test.php<?php$n = new person();echo $n->saying();echo $n->doing();[root@localhost tests]# php test.phpconstructsayingdoingdestruct
以上是“php7扩展类怎么实现”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网PHP编程频道!
--结束END--
本文标题: php7扩展类怎么实现
本文链接: https://lsjlt.com/news/296610.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0