Maison > développement back-end > tutoriel php > PHP扩展编写入门

PHP扩展编写入门

WBOY
Libérer: 2016-07-29 09:15:20
original
898 Les gens l'ont consulté

本文通过编写一个简单的PHP扩展hello_world来说明PHP扩展是如何编写的。这个扩展没有任何的实用性,纯粹用来学习扩展如何编写的,如果真的想自己写出实用性的PHP扩展,还需要熟悉ZEND API,而且对C语言也有较高的要求。

好,进入正题。

1、进入PHP源码的ext目录下,然后执行:

<code><span>./ext_skel --extname</span>=<span>hello_world</span></code>
Copier après la connexion

2、进入hello_world目录,编辑config.m4,去掉16行、18行和53行前面的dnl:

<code><span>PHP_ARG_ENABLE</span>(<span>hello_world</span>, <span>whether</span><span>to</span><span>enable</span><span>hello_world</span><span>support</span>,
<span>[  --enable-hello_world           Enable hello_world support]</span>)
<span>AC_DEFINE</span>(<span>HAVE_HELLO_WORLDLIB</span>,1,<span>[ ]</span>)
</code>
Copier après la connexion

3、修改php_hello_world.h文件,把原来的

<code><span>#<span>define</span> PHP_HELLO_WORLD_H</span></code>
Copier après la connexion

改为如下内容:

<code><span>#<span>define</span> PHP_HELLO_WORLD_H 1</span><span>#<span>define</span> PHP_HELLO_WORLD_VERSION "1.0"</span><span>#<span>define</span> PHP_HELLO_WORLD_EXTNAME "hello_world"</span>
PHP_FUNCTION(hello_world);<span>//这句最关键</span></code>
Copier après la connexion

4、修改hello_world.c文件:
把如下内容:

<code><span>const</span> zend_function_entry hello_world_functions[] = {
        PHP_FE(confirm_hello_world_compiled,    <span>NULL</span>)           <span>/* For testing, remove later. */</span>
        PHP_FE_END      <span>/* Must be the last line in hello_world_functions[] */</span>
};</code>
Copier après la connexion

改成:

<code><span>const</span> zend_function_entry hello_world_functions[] = {
        PHP_FE(confirm_hello_world_compiled,    <span>NULL</span>)           <span>/* For testing, remove later. */</span>        PHP_FE(hello_world,    <span>NULL</span>)
        PHP_FE_END      <span>/* Must be the last line in hello_world_functions[] */</span>
};
</code>
Copier après la connexion

然后在尾部加入如下内容:

<code><span>//扩展函数正文部分</span><span>PHP_FUNCTION(hello_world)</span>{
        <span>RETURN_STRING(<span>"Hello World!"</span>,<span>1</span>)</span>;
}</code>
Copier après la connexion

5、到ext/hello_world目录下执行如下命令

<code>/usr/<span>local</span>/php/bin/phpize
<span>.</span>/configure <span>--</span><span>with</span><span>-php</span><span>-config</span><span>=</span>/usr/<span>local</span>/php/bin/php<span>-config</span>
make <span>&&</span> make install
</code>
Copier après la connexion

6、编辑php.ini,增加如下内容:

<code><span>extension</span>=<span>hello_world.so</span></code>
Copier après la connexion

测试:
在命令行执行如下内容:

<code>php <span>-r</span><span>"echo hello_world();"</span></code>
Copier après la connexion

这时候会在标准输出那里看到如下内容:

<code><span>Hello</span><span>World</span><span>!</span></code>
Copier après la connexion

至此,hello_world扩展编写完毕!

版权声明:本文为博主原创文章,转载请注明出处。

以上就介绍了PHP扩展编写入门,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal