PHP 扩充

WBOY
Release: 2016-06-13 10:38:58
Original
829 people have browsed it

PHP 扩展

我想我还是写点什么好了!!

?

0:

./ext_skel --extname=foo

?

cd foo

?

vi config.m4

?

修改成这样

PHP_ARG_ENABLE(foo, whether to enable foo support,
[? --enable-foo?????????? Enable foo support])


?

1:

vi php_foo.h

增加一个函数声明 PHP_FUNCTION(foo_func);
2:

vi foo.c


?

?

?

3:

//foo dir

phpize

./configure

make

make install

vi php.ini

extenstion=foo.so

?
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template