Home > php教程 > php手册 > PHP扩展开发入门,php扩展入门

PHP扩展开发入门,php扩展入门

WBOY
Release: 2016-06-13 08:44:15
Original
1186 people have browsed it

PHP扩展开发入门,php扩展入门

原文:http://www.orlion.ga/1090/

 

写一个最简单的将字符串全部变成大写的函数:

<span><?php
    function my_toupper($str) {
        return strtoupper($str);
    }
    
    echo my_toupper('demo');
?></span>
Copy after login

现在我们开发一个php扩展,实现my_toupper的功能。

Step1:

PHP提供了一个扩展框架生成器:ext_skel,这个工具在php源码的ext目录(我的是/usr/local/src/php-5.6.17/ext/)下。首先我们在php源码的ext目录下创建一个orlion.skel文件,文件内容为:

<span>string my_toupper(string str)</span>
Copy after login

这个文件就是要告诉ext_skel我们的扩展里有my_toupper这个函数,接下来执行:

<span>./ext_skel --extname=orlion --proto=orlion.skel</span>
Copy after login

这一步会在当前目录下创建一个文件夹orlion。目录结构这样的:

这时候这个扩展的框架就搭建好了。

Step2:

修改orlion目录下的config.m4,将这个文件第10、11、12行的dnl去掉:

就是将

改为:

Step3:

接下来就是要实现我们的功能了,打开orlion.c,然后找到函数PHP_FUNCTION(my_toupper),修改为如下:

然后编译扩展,依次运行:

<span>$ /usr/local/php/bin/phpize
$ ./configure --with-php-config=/usr/local/php/bin/php-config
$ make</span>
Copy after login

Step4:

将扩展添加到php中,首先将我们扩展中的orlion/mudules/orlion.so拷贝到php的扩展目录:

然后修改配置php.ini在文件最后边加上"extension=orlion.so"然后重启php-fpm。

Step5:

写个test.php文件测试一下:

<span><?php
    var_dump(my_toupper('abc'));
?></span>
Copy after login

    运行一下可以看到输出了ABC,success!

  关于PHP内核方面的技术可以访问:http://www.orlion.ga/tag/php-internal/

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template