php - 扩展的编写和安装
(2013-08-30 15:20:35)
标签:
php编写扩展it |
分类: php那些事 |
第一步:建立扩展骨架。
第二步:修改编译参数。
-
cd
php-5.2.14/ext/laiwenhui
-
vi
config.m4
-
去掉
-
PHP_ARG_ENABLE(laiwenhui, whether to enable laiwenhui
support,
-
[
--enable-laiwenhui -
两行前面的dnl
-
修改后为:
-
dnl
Otherwise
use enable:
-
-
PHP_ARG_ENABLE(laiwenhui, whether to enable laiwenhui
support,
-
dnl
Make
sure that the
comment is aligned:
-
[
--enable-laiwenhui
第三步:编写代码
在
PHP_FUNCTION(confirm_laiwenhui_compiled);
后面新增一行
PHP_FUNCTION(test);
添加后为:
PHP_FUNCTION(confirm_laiwenhui_compiled);
vim laiwenhui.c
在PHP_FE(confirm_laiwenhui_compiled, NULL)
后面添加
PHP_FE(test, NULL)
添加后为:
zend_function_entry laiwenhui_functions[] = {
-
PHP_FE(confirm_laiwenhui_compiled,
NULL -
PHP_FE(test,
NULL -
{NULL, NULL, NULL}
-
**在文件最后面增加如下代码:**
-
PHP_FUNCTION(test)
-
{
-
char
*arg = "This is my first extention!";
-
int
len ; -
char
*strg;
-
-
len
=
spprintf(&strg, 0, "%s\n", arg);
-
RETURN_STRINGL(strg, len, 0);
- }
第四步:编译代码
cd php-5.2.14/ext/laiwenhui
-
/opt/module/php/bin/phpize
-
./configure --with-php-config=/opt/module/php/bin/php-config
-
make
-
make
install
-
-
我的PHP安装路径为:/opt/module/php
-
这个时候会生成一个文件
/opt/module/php/lib/php/extensions/no-debug-non-zts-20060613/laiwenhui.so
-
-
编辑PHP配置文件php.ini,添加扩展:
-
vim
php.ini
-
在[PHP]模块下增加:
-
extension
=
laiwenhui.so
-
;extension=php_zip.dll
-
extension
=
laiwenhui.so
-
- 把php.ini 文件中的 extension_dir 修改为该目录:
extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/"
-
;
Directory
in which the loadable
extensions (modules) reside.
- extension_dir = "/opt/module/php/lib/php/extensions/no-debug-non-zts-20060613/"
第五步:检查安装结果
第六步:执行测试代码