php擴充之關於hello world的詳細介紹

黄舟
發布: 2023-03-15 07:10:01
原創
1928 人瀏覽過


前言

這是一篇拖了很久就想寫的備忘錄,寫php擴充一百度都是文章,但很多文章是很老的了。有的例子都跑不通。有點尷尬。
此文是用來記錄自己的筆記,當作備忘錄。

正文

1. 下載php安裝套件

下載位址:php下載快鏈
本文選取的是php-5.6.7安裝套件。
之後安裝php。

2. 建立擴充骨架

//跑到ext目录cd php-5.6.7/ext///执行一键生成骨架的操作./ext_skel --extname=helloworld
登入後複製

如果看到以下提示說明建立成果
php擴充之關於hello world的詳細介紹

cd helloworld ls
登入後複製

一下你會發現有下列檔案:

config.m4 config.w32 CREDITS EXPERIMENTAL helloworld.c helloworld.php php_helloworld.h tests
登入後複製

3. 修改擴充功能的設定檔config.m4

去掉下面程式碼之前的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的註解)。

4. 進行編譯測試

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

#5. 建立helloworld函數

編輯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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!