教你一步一步來建立一個php擴充(基本步驟)

來源:互聯網
上載者:User
本篇文章給大家帶來的內容是關於教你一步一步來建立一個php擴充(基本步驟) ,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

建立一個擴充的基本步驟都有哪些。樣本中,我們將實現如下功能:

<?phpecho say();?>

輸出內容:

$ php ./test.php$ hello word

在擴充中實現一個say方法,調用say方法後,輸出 hello word。

第一步:產生代碼

PHP為我們提供了產生基本代碼的工具 ext_skel。這個工具在PHP原始碼的./ext目錄下。

$ cd php_src/ext/$ ./ext_skel --extname=say

extname參數的值就是副檔名稱。執行ext_skel命令後,這樣在目前的目錄下會產生一個與副檔名一樣的目錄。

第二步,修改config.m4設定檔

config.m4的作用就是配合phpize工具產生configure檔案。configure檔案是用於環境檢測的。檢測擴充編譯運行所需的環境是否滿足。現在我們開始修改config.m4檔案。

$ cd ./say$ vim ./config.m4

開啟,config.m4檔案後,你會發現這樣一段文字。

dnl If your extension references something external, use with:

dnl PHP_ARG_WITH(say, for say support,
dnl Make sure that the comment is aligned:
dnl [ --with-say Include say support])

dnl Otherwise use enable:

dnl PHP_ARG_ENABLE(say, whether to enable say support,
dnl Make sure that the comment is aligned:
dnl [ --enable-say Enable say support])

其中,dnl 是注釋符號。上面的代碼說,如果你所編寫的擴充如果依賴其它的擴充或者lib庫,需要去掉PHP_ARG_WITH相關代碼的注釋。否則,去掉 PHP_ARG_ENABLE 相關程式碼片段的注釋。我們編寫的擴充不需要依賴其他的擴充和lib庫。因此,我們去掉PHP_ARG_ENABLE前面的注釋。去掉注釋後的代碼如下:

dnl If your extension references something external, use with:

dnl PHP_ARG_WITH(say, for say support,
dnl Make sure that the comment is aligned:
dnl [ --with-say Include say support])

dnl Otherwise use enable:

PHP_ARG_ENABLE(say, whether to enable say support,
Make sure that the comment is aligned:
[ --enable-say Enable say support])

第三步,代碼實現

修改say.c檔案。實現say方法。
找到PHP_FUNCTION(confirm_say_compiled),在其上面增加如下代碼:

PHP_FUNCTION(say){    zend_string *strg;    strg = strpprintf(0, "hello word");    RETURN_STR(strg);}

找到 PHP_FE(confirm_say_compiled, 在上面增加如下代碼:

PHP_FE(say, NULL)

修改後的代碼如下:

 const zend_function_entry say_functions[] = { PHP_FE(say, NULL)       /* For testing, remove later. */ PHP_FE(confirm_say_compiled,    NULL)       /* For testing, remove later. */ PHP_FE_END  /* Must be the last line in say_functions[] */ };/ }}} /

第四步,編譯安裝

編譯擴充的步驟如下:

$ phpize$ ./configure$ make && make install

修改php.ini檔案,增加如下代碼:

[say]extension = say.so

然後執行,php -m 命令。在輸出的內容中,你會看到say字樣。

第五步,調用測試

自己寫一個指令碼,調用say方法。看輸出的內容是否符合預期。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.