前言
這是一篇拖了很久就想寫的備忘錄,寫php擴充一百度都是文章,但很多文章是很老的了。有的例子都跑不通。有點尷尬。
此文是用來記錄自己的筆記,當作備忘錄。
下載位址:php下載快鏈
本文選取的是php-5.6.7安裝套件。
之後安裝php。
//跑到ext目录cd php-5.6.7/ext///执行一键生成骨架的操作./ext_skel --extname=helloworld
如果看到以下提示說明建立成果
cd helloworld ls
一下你會發現有下列檔案:
config.m4 config.w32 CREDITS EXPERIMENTAL helloworld.c helloworld.php php_helloworld.h tests
去掉下面程式碼之前的dnl 。 (dnl相當於php的//)
##动态编译选项,通过.so的方式链接,去掉dnl注释PHP_ARG_WITH(helloworld, for helloworld support, Make sure that the comment is aligned: [ --with-helloworld Include helloworld support])##静态编译选项,通过enable来启用,去掉dnl注释PHP_ARG_ENABLE(helloworld, whether to enable helloworld support, Make sure that the comment is aligned: [ --enable-helloworld Enable helloworld support])
一般二者選一即可(看個人喜好吧,本文教程必須去掉enable的註解)。
phpize ./configure --enable-helloworldmakemake install
然後到php.ini加入擴充功能
vim /usr/local/php/etc/php.ini// 添加扩展extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/"extension = "helloworld.so"// 重启php-fpm/etc/init.d/php-fpm restart
回到寫入擴充的資料夾,執行測試指令
php -d enable_dl=On myfile.php
看到以下字樣說明離勝利不遠了:
confirm_helloworld_compiled Congratulations! You have successfully modified ext/helloworld/config.m4. Module helloworld is now compiled into PHP.
confirm_helloworld_compiled是ext_skel自動產生的測試函數。
ps:如果本機安裝了兩個php版本,而且是用php7寫擴充功能的話,可能會遇到以下問題:
/mydata/src/php-7.0.0/ext/helloworld/helloworld.c: 在函数‘zif_confirm_helloworld_compiled’中: /mydata/src/php-7.0.0/ext/helloworld/helloworld.c:58: 错误:‘zend_string’未声明(在此函数内第一次使用) /mydata/src/php-7.0.0/ext/helloworld/helloworld.c:58: 错误:(即使在一个函数内多次出现,每个未声明的标识符在其 /mydata/src/php-7.0.0/ext/helloworld/helloworld.c:58: 错误:所在的函数内也只报告一次。) /mydata/src/php-7.0.0/ext/helloworld/helloworld.c:58: 错误:‘strg’未声明(在此函数内第一次使用)
原因:編譯的環境不是php7。
解決方法:php5 裡面沒有zend_string類型,用char 替換,或者,修改你的php版本環境到php7
編輯helloworld.c,補充要實現的函數
##zend_function_entry helloworld_functions 补充要实现的函数const zend_function_entry helloworld_functions[] = { PHP_FE(confirm_helloworld_compiled, NULL) /* For testing, remove later. */ PHP_FE(helloworld, NULL) /* 这是补充的一行,尾巴没有逗号 */ PHP_FE_END /* Must be the last line in helloworld_functions[] */};
找到”PHP_FUNCTION(confirm_helloworld_compiled)”,另起一個函數寫函數實體:
PHP_FUNCTION(helloworld) { php_printf("Hello World!\n"); RETURN_TRUE; }
再走一遍編譯:
./configure --enable-helloworld && make && make install
測試一下是不是真的成功了:
php -d enable_dl=On -r "dl('helloworld.so');helloworld();"//输出Hello World!
成功!
以上是php擴充之關於hello world的詳細介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!