程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP擴展開發(1)-創建基礎框架,php框架

PHP擴展開發(1)-創建基礎框架,php框架

編輯:關於PHP編程

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. 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved