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])
保存退出.
找到:PHP_FUNCTION(confirm_ rot13_compiled); ,新增一行:
PHP_FUNCTION(rot13_test);
数组里增加我们的函数,找到 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);
}
保存退出。
./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
原文地址:https://blog.csdn.net/sinat_30603081/article/details/134637545
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_6023.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!