时间:2021-07-01 10:21:17 帮助过:30人阅读
1、PHP本身无法访问的资源或是调用,
2、通过扩展的方式可以实现处于性能和效率的考虑,
3、用C实现会更好
4、处于商业或代码保护考虑,将代码封装起来
5、为了更深入的了解PHP,从这里入门
假设有这么一个扩展,提供一个叫ccvita_string的函数。下面详细介绍怎么样制作这样一个PHP扩展:
string scutephp_string(string str)
cd usr/src/php-5.3.8/ext/
./ext_skel --extname=scutephp --proto=scutephp.skel
cd scutephp/
dnl PHP_ARG_WITH(ccvita, for ccvita support,
dnl Make sure that the comment is aligned:
dnl [ --with-scutephp Include scutephp support])
PHP_ARG_WITH(scutephp, for scutephp support,
Make sure that the comment is aligned:
[ --with-scutephp Include scutephp support])
PHP_FUNCTION(scutephp_string)
{
char *str = NULL;
int argc = ZEND_NUM_ARGS();
int str_len;
char *result;
if (zend_parse_parameters(argc TSRMLS_CC, "s", &str, &str_len) == FAILURE)
return;
str_len = spprintf(&result, 0, "Link", str);
RETURN_STRINGL(result, str_len, 0);
}
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make
cp modules/scutephp.so /usr/local/php/ext/
vim /usr/local/php/etc/php.ini
extension=/usr/local/php/ext/scutephp.so #在php.ini文件最后增加这一行
service php-fpm restart #重启PHP服务
cp ccvita.php /data/www/wwwroot/default/
接下来就可以访问scutephp.php这个文件,测试扩展了。