首先進入PHP的源碼安裝包目錄下面執行一條命令:php
cd /home/oldboy/tools/php-5.5.32/ext/ ./ext_skel --extname=redis
而後進入到擴展目錄,能夠看到以下三個文件,分別進行編輯:redis
cd redis/ ls config.m4 redis.c php_redis.h
操做前養成備份的習慣
按照順序先編輯config.m4
將ide
> dnl PHP_ARG_ENABLE(redis, whether to enable redis support, > dnl Make sure that the comment is aligned: > dnl [ --enable-redis Enable redis support])
修改成code
< PHP_ARG_ENABLE(redis, whether to enable redis support, < [ --enable-redis Enable redis support])
保存退出rem
而後編輯redis.c
在這段添加一行代碼:PHP_FE(say_hello, NULL)源碼
const zend_function_entry redis_functions[] = { PHP_FE(say_hello, NULL) PHP_FE(confirm_redis_compiled, NULL) /* For testing, remove later. */ PHP_FE_END /* Must be the last line in redis_functions[] */ };
在文件末尾添加以下代碼:it
PHP_FUNCTION(say_hello) { zend_printf("hello redis!"); }
保存退出io
最後編輯php_redis.h
在這段添加一行代碼:PHP_FUNCTION(say_hello)ast
PHP_FUNCTION(confirm_redis_compiled); /* For testing, remove later. */ PHP_FUNCTION(say_hello); /* For testing, remove later. */
保存退出function
不出意外此時能夠執行phpize命令,不報錯,問題解決!