第一个php扩展开发的demo
cd /root/soft/php/php-5.2.6/ext
./ext_skel --extname=heiyeluren
cd /root/soft/php/php-5.2.6/ext/heiyeluren
vi config.m4
打开文件后去掉 dnl ,获得下面的信息:
PHP_ARG_ENABLE(rot13, whether to enable heiyeluren support,
[ --enable-heiyeluren Enable heiyeluren support])
保存退出.
vim php_rot13.h
找到:PHP_FUNCTION(confirm_ rot13_compiled); ,新增一行:
PHP_FUNCTION(rot13_test);
vim rot13.c
数组里增加我们的函数,找到 zend_function_entry rot13_functions[],增加:
PHP_FE(rot13_test, NULL)
再到 rot13.c 文件最后面增加如下代码:
PHP_FUNCTION(heiyeluren_test)
{
char *arg = NULL;
int arg_len, len;
char *strg;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &arg, &arg_len) == FAILURE) {
return;
}
len = spprintf(&strg, 0, "Your input string: %s/n", arg);
RETURN_STRINGL(strg, len, 0);
}
保存退出。
编译安装
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
sudo make
sudo make test
sudo make install
sudo cp /usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/rot13.so rot13.so
检查安装结果
php -m
http://blog.csdn.net/heiyeshuwu/article/details/3453854