##入门php
1.下载PHP源码(个人版本是5.6.13) 2.常规编译安装 [能够看我之前的blog](http://my.oschina.net/lwl1989/blog/511295) 3.使用ext_skel ``` cd phpsrc/ext ./ext_skel --extname=name // name 是指你要写得扩展的名字,下文咱们都是t2 ```
出现提示mysql
1. $ cd .. 2. $ vi ext/t2/config.m4 3. $ ./buildconf 4. $ ./configure --[with|enable]-t2 5. $ make 6. $ ./sapi/cli/php -f ext/t2/t2.php 7. $ vi ext/t2/t2.c 8. $ make
根据提示进行操做 其中第二步 咱们应该修改config.m4的十、十一、12行 去除掉dnl[个人理解是ZEND一种注释的方案]sql
到这个时候,咱们就能够进行编译安装了api
/usr/local/php/bin/phpize //执行phpize ./configure --with-php-config=/usr/local/php/bin/php-config make make install
在php.ini里开启 t2.so文件 你的模块就加载好了 查看php -m 能够发现t2模块已经被加载函数
##编码(HELLO WORLD) 可是目前而言,这个扩展是没有任何功能的。 因而咱们须要加入新的功能。ui
这时,咱们能够对t2.c文件进行编写(固然你也能够写在别的文件里,在t2.c里面include)编码
PHP_FUNCTION(t2_hello) { printf("hello world\n"); }
这样从新编译后,运行 php -r "t2_hello();"是不行的,为何呢?.net
由于咱们没有将t2_hello载入到函数列表指针
原型:code
typedef struct _zend_function_entry { char *fname; void (*handler)(INTERNAL_FUNCTION_PARAMETERS); unsigned char *func_arg_types; } zend_function_entry;
参数 描述 fname 提供给PHP中调用的函数名。例如mysql_connect handler 负责处理这个接口函数的指针。 func_arg_types 标记参数。能够设置为NULL
咱们在生成的中加入一行
static const zend_function_entry t2_functions[] = { //在这加入 {NULL, NULL, NULL} }
PHP_FE(t2_hello, NULL)
注意,zend_function_entry的最后一项必定是{NULL, NULL, NULL},Zend引擎就是靠这个判断导出函数列表是否完毕的。
而后从新编译,运行php -r "t2_hello();" 这时,咱们的hello world!到此完成了
时间不太多,下次咱们再说关于变量和参数值传递的处理还有几个模块的魔术方法(zend_module_entry)。