时间:2021-07-01 10:21:17 帮助过:13人阅读
我想我还是写点什么好了!!
?
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
?