摘要:例如,這里要創建一個名為的擴展現在,在目錄下出現了一個新建的擴展目錄這時,該擴展是無法編譯通過的,需要先編輯文件才行。
首先需要確定系統中安裝了gcc編譯器,合適版本的bison等,下面是從源碼編譯安裝PHP需要執行的基本命令:
# cd php-src # ./buildconf # ./configure --enable-debug --enable-maintainer-zts --enable-cli # make # make install構建一個基本的擴展骨架
在PHP擴展開發時,使用ext_skel完成擴展的結構骨架創建。
$ ./ext_skel ./ext_skel --extname=module [--proto=file] [--stubs=file] [--xml[=file]] [--skel=dir] [--full-xml] [--no-help] --extname=module 這里的module是要創建的擴展名稱 --proto=file 這里的file文件包含了要創建的函數的原型 --stubs=file generate only function stubs in file --xml generate xml documentation to be added to phpdoc-cvs --skel=dir 創建擴展骨架的目錄 --full-xml generate xml documentation for a self-contained extension (not yet implemented) --no-help don"t try to be nice and create comments in the code and helper functions to test if the module compiled
注意: ext_skel命令文件在源文件的ext目錄下。
這里的--extname參數是要創建的擴展名稱,擴展名稱為 小寫字母 + 下劃線 組成,并且,
在ext目錄中必須是唯一的。
例如,這里要創建一個名為ext_demo_1的PHP擴展:
/vagrant/ext$ ./ext_skel --extname=ext_demo_1 Creating directory ext_demo_1 Creating basic files: config.m4 config.w32 .svnignore ext_demo_1.c php_ext_demo_1.h CREDITS EXPERIMENTAL tests/001.phpt ext_demo_1.php [done]. To use your new extension, you will have to execute the following steps:
$ cd ..
$ vi ext/extdemo1/config.m4
$ ./buildconf
$ ./configure --[with|enable]-extdemo1
$ make
$ ./php -f ext/extdemo1/extdemo1.php
$ vi ext/extdemo1/extdemo1.c
$ make
Repeat steps 3-6 until you are satisfied with ext/extdemo1/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.
現在,在ext目錄下出現了一個新建的擴展目錄ext_demo_1:
/vagrant/ext/ext_demo_1$ ls config.m4 CREDITS ext_demo_1.c php_ext_demo_1.h config.w32 EXPERIMENTAL ext_demo_1.php tests
這時,該擴展是無法編譯通過的,需要先編輯config.m4文件才行。
配置文件config.m4配置文件config.m4告訴UNIX構建系統擴展支持的configure選項以及擴展需要的額外的庫,
包含哪些源文件等,該文件使用的是GNU的autoconf語法,以dnl開頭的行為注釋,使用中括號([和])包含的為字符串。
autoconf語法參見 AUTOCONF文檔
PHP_ARG_ENABLE(ext_demo_1, whether to enable ext_demo_1 support, [ --enable-ext_demo_1 Enable ext_demo_1 support]) if test "$PHP_EXT_DEMO_1" != "no"; then PHP_SUBST(EXT_DEMO_1_SHARED_LIBADD) PHP_NEW_EXTENSION(ext_demo_1, ext_demo_1.c, $ext_shared) fi
上述為autoconf的配置文件,第一個宏PHP_ARG_ENABLE,含有三個參數:
extdemo1 這是第一個參數,為./configure建立了名為enable-ext_demo_1的選項
第二個參數將會在./configure命令處理到該擴展的配置文件時,顯示該參數的內容
第三個參數是./configure命令的幫助,在使用./configure --help的時候顯示
第二個宏為PHP_NEW_EXTENSION,該宏聲明了擴展的模塊和必須要編譯作為擴展一部分的源碼文件。
如果需要多個源文件,則使用空格分隔,第三個參數$ext_shared與調用
PHP_SUBST(EXT_DEMO_1_SHARED_LIBADD)有關。
PHP_NEW_EXTENSION(ext_demo_1, ext_demo_1.c, $ext_shared)編譯擴展
修改完config.m4文件之后,接下來編譯PHP和擴展。
/vagrant$ ./configure --disable-libxml --enable-ext_demo_1 --disable-dom --disable-simplexml --disable-xml --disable-xmlreader --disable-xmlwriter --without-pear --prefix=/usr/local/php /vagrant$ make /vagrant$ sudo make install Installing PHP SAPI module: cgi Installing PHP CGI binary: /usr/local/php/bin/ Installing PHP CLI binary: /usr/local/php/bin/ Installing PHP CLI man page: /usr/local/php/man/man1/ Installing build environment: /usr/local/php/lib/php/build/ Installing header files: /usr/local/php/include/php/ Installing helper programs: /usr/local/php/bin/ program: phpize program: php-config Installing man pages: /usr/local/php/man/man1/ page: phpize.1 page: php-config.1 /vagrant/build/shtool install -c ext/phar/phar.phar /usr/local/php/bin ln -s -f /usr/local/php/bin/phar.phar /usr/local/php/bin/phar Installing PDO headers: /usr/local/php/include/php/ext/pdo/
此時,PHP安裝在了/usr/local/php目錄下,進入該目錄,可以看到如下文件:
/usr/local/php$ ls bin include lib man
進入/usr/local/php/bin目錄,執行以下命令:
/usr/local/php/bin$ ./php --info|grep demo Configure Command => "./configure" "--disable-libxml" "--enable-ext_demo_1" "--disable-dom" "--disable-simplexml" "--disable-xml" "--disable-xmlreader" "--disable-xmlwriter" "--without-pear" "--prefix=/usr/local/php" ext_demo_1 ext_demo_1 support => enabled
可以看到,phpinfo()中擴展支持已經啟用了,按照上述步驟安裝的擴展中包含了一個測試擴展是否能夠正常工作的函數,該函數名為confirm_ext_demo_1_compiled(arg),執行結果如下:
/usr/local/php/bin$ ./php -r "echo confirm_ext_demo_1_compiled("mylxsw");" Congratulations! You have successfully modified ext/ext_demo_1/config.m4. Module mylxsw is now compiled into PHP.
可以看到,ext_demo_1擴展安裝成功了,關于擴展開發更多內容,請移步 AICODE.CC.
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/21086.html
摘要:簡介通過擴展,我們可以在代碼中使用一些特定的方法大部分的擴展都是用寫的。這個目錄與我們的擴展同名。我們先來在擴展中創建一個類,使用此類來渲染。接下來命令行執行以下命令來編譯擴展第一次運行以上命令時,會初始化一些東西。 showImg(https://segmentfault.com/img/remote/1460000018698586); 簡介: 通過 PHP 擴展, 我們可以在 p...
摘要:我們為了處理這些挑戰,提出了一個新的引用測試框架當然,也是開源的,并且在整個過程中節省了上百萬美元。另一方面,被證實有一些嚴重的缺點部署困難而且慢。在緩存刷新期間,當可用于別的進程的已緩存的文件字節碼在此時損壞,就會導致崩潰。 How Badoo saved one million dollars switching to PHP7 我們成功的把我們的應用遷移到了php7上面(數百臺機...
摘要:通過廣泛使用且采用系統的庫,避免了跨站請求偽造其中,用戶能夠被誘騙在你的站點上執行某些操作。小結通過使用自動加載程序所有主流框架的標配,避免了遠程和本地文件包含。另外,對于伸縮性,重要的是數據庫。 PHP 現在名聲很糟糕,因為它曾經是可怕的。本文試著回答一些常見的關于 PHP 的斷言,目的是向非技術人員解釋,PHP 并不像...
摘要:最近部署上線一個項目,新的服務器,在生產環境安裝配置等各種東西一大堆很麻煩。本文是我學習并使用部署項目的一個記錄。另外我們可以部署不同版本的應用,例如,并且互不干擾。之后部署只需要移植鏡像生成容器,就能保證環境的一致。需要使用三個鏡像。 最近部署上線一個項目,新的服務器,在生產環境安裝配置nginx、php、mysql、git、composer等各種東西一大堆很麻煩。docker已經火...
閱讀 991·2023-04-25 14:20
閱讀 1867·2021-11-24 10:20
閱讀 3763·2021-11-11 16:55
閱讀 2904·2021-10-14 09:42
閱讀 3465·2019-08-30 15:56
閱讀 1142·2019-08-30 15:55
閱讀 1063·2019-08-30 15:44
閱讀 770·2019-08-29 11:28