Heim >Backend-Entwicklung >PHP-Tutorial >快速开发php扩展

快速开发php扩展

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-23 14:29:01860Durchsuche

-bash-3.1$ ./ext_skel --extname=wd_probe

To use your new extension, you will have to execute the following steps:

1.  $ cd ..
2.  $ vi ext/wd_probe/config.m4
3.  $ ./buildconf
4.  $ ./configure --[with|enable]-wd_probe
5.  $ make
6.  $ ./php -f ext/wd_probe/wd_probe.php
7.  $ vi ext/wd_probe/wd_probe.c
8.  $ make

Repeat steps 3-6 until you are satisfied with ext/wd_probe/config.m4 and
step 6 confirms that your module is compiled into PHP. Then, start writing
code and repeat the last two steps as often as necessary.


#vi config.m4
PHP_ARG_ENABLE(wd_probe, whether to enable wd_probe support,
dnl Make sure that the comment is aligned:
[  --enable-wd_probe           Enable wd_probe support])

/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make
make test
make install

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn