PHP扩展开发(1)-创建基础框架,php框架_PHP教程
程序员文章站
2024-01-03 15:35:46
...
PHP扩展开发(1)-创建基础框架,php框架
生成PHP扩展开发的基础框架。 一、Linux下$>cd ~/{php源码}/ext
$>./ext_skel --extname=simple Creating directory simpleCreating 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.
推荐阅读
-
国产PHP开发框架myqee新手快速入门教程,myqee入门教程
-
PHP开发框架Yii Framework教程(31) Zii组件-DetailView示例
-
国产PHP开发框架myqee新手快速入门教程_php实例
-
Ubuntu 环境下运行YII2框架的一些扩展,ubuntuyii2_PHP教程
-
PHP开发框架Yii Framework教程(36) Zii组件-DatePicker示例
-
全面解读PHP的人气开发框架Laravel,全面解读laravel_PHP教程
-
PHP开发框架Yii Framework教程(30) Zii组件-ListView示例
-
对于PHP大型开发框架的看法_PHP教程
-
yii框架源码分析之创建controller代码_PHP教程
-
PHP的Yii框架中YiiBase入口类的扩展写法示例,yiiyiibase_PHP教程