当前位置: 代码迷 >> PHP >> PHP 扩充
  详细解决方案

PHP 扩充

热度:373   发布时间:2012-08-24 10:00:20.0
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

?
  相关解决方案