ubuntu12.04使用c编写php扩展模块教程分享
系统是ubuntu 12.04,已经安装好了apache和php,php的版本是5.3.10。
以下操作如果碰到权限方面的问题,建议切换成root操作。
1、下载源码
签出php 5.3.10的源代码
$ svn checkout https://svn.php.net/repository/php/php-src/branches/php_5_3_10/
tips:如果没有这个命令,需要先安装svn,在ubuntu下直接使用apt-get安装就ok了:
$ sudo apt-get install subversion
关于php源码,如需要了解更多信息,可以查看php维基中关于svn的说明:https://wiki.php.net/vcs/svnfaq
2、创建模块
a、源码签出完毕后,进入源码ext目录,先用ext_skel创建一个模块, 模块名为my:
$ ./ext_skel --extname=my
b、进入my模块:
$ cd my
c、修改config.m4文件,找到如下内容:
dnl php_arg_with(my, for my support,
dnl make sure that the comment is aligned:
dnl [ --with-my include my support])
将前面的dnl去除,最后如下:
php_arg_with(my, for my support,
make sure that the comment is aligned:
[ --with-my include my support])
然后保存文件。
tips:如果需要测试下修改是否正确,可以使用php my.php来测试下:
$ php my.php
confirm_my_compiled
congratulations! you have successfully modified ext/my/config.m4. module my is now compiled into php.
上面confirm_my_compiled就是模块默认的函数,后面将该模块加载后,就可以调用这个函数了。
3、编译模块
还是在my模块的目录下执行下面命令:
$ phpize
$ ./configure
$ make
$ make install
编译成功后,会提示这样的信息:
installing shared extensions: /usr/lib/php5/20090626+lfs/
表示模块已经编译完成,并且复制到php模块目录了。
tips:如果phpize命令没有找到,需要安装下php5-dev,在ubuntu下直接使用apt-get安装就ok了。
$ apt-get install php5-dev
4、加载模块
编辑文件:
$ vim /etc/php5/conf.d/my.ini
增加如下内容,表示加载my.so模块,然后保存。
extension=my.so
重新启动apache
$ /etc/init.d/apache2 restart
在web环境下,可以用phpinfo看看是否加载my模块了。终端可以使用php -i | less查看。
5、编写测试程序
如果上面都执行顺利,那么my模块就加载进来了,my模块的默认的一个方法confirm_my_compiled也就可以调用了。编写php测试文件:
echo confirm_my_compiled("hello");
执行测试文件,如果看到下面的输出,那么就成功了。
congratulations! you have successfully modified ext/my/config.m4. module hello is now compiled into php.
上一篇: 一个好用的PHP验证码类实例分享
下一篇: sql server 常用的几个数据类型
推荐阅读
-
ubuntu12.04使用c编写php扩展模块教程分享
-
使用C++来编写Ruby程序扩展的教程
-
ubuntu12.04使用c编写php扩展模块教程分享_PHP
-
ubuntu12.04使用c编写php扩展模块教程_PHP教程
-
如何用C语言编写PHP扩展的详解_PHP教程
-
ubuntu12.04使用c编写php扩展模块教程分享_PHP
-
使用C++来编写Ruby程序扩展的教程
-
如何用C语言编写PHP扩展的详解_PHP教程
-
PHP使用SOAP扩展实现WebService的方法 webservice视频教程 c# webservice php webservice
-
PHP扩展模块memcached长连接使用方法分析,扩展模块memcached_PHP教程