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
?