PHP扩展开发(一)-创建基础框架
生成PHP扩展开发的基础框架。
一、Linux下
$>cd ~/{php源码}/ext
$>./ext_skel --extname=simple
Creating directory simple
Creating basic files: config.m4 config.w32 .svnignore simple.c php_simple.h CREDITS EXPERIMENTAL tests/001.phpt simple.php [done].
To use your new extension, you will have to execute the following steps:
1. $ cd ..
2. $ vi ext/simple/config.m4
3. $ ./buildconf
4. $ ./configure --[with|enable]-simple
5. $ make
6. $ ./php -f ext/simple/simple.php
7. $ vi ext/simple/simple.c
8. $ make
Repeat steps 3-6 until you are satisfied with ext/simple/config.m4 and
step 6 confirms that your module is compiled into PHP. Then, start writing
code and repeat the last two steps as often as necessary.
二、Windows下
$>cd ~/{php源码}/ext
$>php.exe ext_skel_win32.php --extname=simple
Creating directory simple
Creating basic files: config.m4 config.w32 .svnignore simple.c php_simple.h CREDITS EXPERIMENTAL tests/001.phpt simple.php [done].
To use your new extension, you will have to execute the following steps:
1. $ cd ..
2. $ vi ext/simple/config.m4
3. $ ./buildconf
4. $ ./configure --[with|enable]-simple
5. $ make
6. $ ./sapi/cli/php -f ext/simple/simple.php
7. $ vi ext/simple/simple.c
8. $ make
Repeat steps 3-6 until you are satisfied with ext/simple/config.m4 and
step 6 confirms that your module is compiled into PHP. Then, start writing
code and repeat the last two steps as often as necessary.
相关文章
相关视频
推荐阅读
-
详解如何使用node.js的开发框架express创建一个web应用
-
[原创]快速开发一个PHP扩展
-
Python web 开发一定要用框架吗?有没其它方法,类似 PHP 的语句?
-
Linux 搭建php扩展开发框架,linux搭建php框架
-
[翻译][php扩展开发和嵌入式]第5章-您的第一个扩展
-
php框架 - 从学习开发PHP扩展到提交到PECL要多久?
-
一个自己开发的简单,快速,方便,小巧的php web框架
-
开发一个商城,是用PHP好呢,还是Java,PHP有很多开源商城框架,但是现在Java才是未来,纠结中?
-
写一个自己的PHP开发框架,11K代码能做到什么呢?
-
PHP内核介绍及扩展开发指南—基础知识_PHP教程