php扩展开发(1)-创建基础框架,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.
http://www.bkjia.com/phpjc/1093867.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/1093867.htmltecharticlephp扩展开发(1)-创建基础框架,php框架 生成php扩展开发的基础框架。一、linux下 $cd ~/{php源码}/ext $./ext_skel --extname=simplecreating directory sim...