主頁(yè) > 知識(shí)庫(kù) > PHP7擴(kuò)展開發(fā)之hello word實(shí)現(xiàn)方法詳解

PHP7擴(kuò)展開發(fā)之hello word實(shí)現(xiàn)方法詳解

熱門標(biāo)簽:南寧高頻外呼回?fù)芟到y(tǒng)哪家好 電話機(jī)器人危險(xiǎn)嗎 400電話辦理福州市 江蘇外呼電銷機(jī)器人報(bào)價(jià) 400電話申請(qǐng)方法收費(fèi) 專業(yè)電話機(jī)器人批發(fā)商 長(zhǎng)沙crm外呼系統(tǒng)業(yè)務(wù) 深圳外呼系統(tǒng)收費(fèi) 離石地圖標(biāo)注

本文實(shí)例講述了PHP7擴(kuò)展開發(fā)之hello word實(shí)現(xiàn)方法。分享給大家供大家參考,具體如下:

這里是以PHP7作為基礎(chǔ),講解如何從零開始創(chuàng)建一個(gè)PHP擴(kuò)展。本文主要講解創(chuàng)建一個(gè)擴(kuò)展的基本步驟都有哪些。示例中,我們將實(shí)現(xiàn)如下功能:

?php
echo say();
?>

輸出內(nèi)容:

$ php ./test.php
$ hello word

在擴(kuò)展中實(shí)現(xiàn)一個(gè)say方法,調(diào)用say方法后,輸出 hello word。

第一步:生成代碼

PHP為我們提供了生成基本代碼的工具 ext_skel。這個(gè)工具在PHP源代碼的./ext目錄下。

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

extname參數(shù)的值就是擴(kuò)展名稱。執(zhí)行ext_skel命令后,這樣在當(dāng)前目錄下會(huì)生成一個(gè)與擴(kuò)展名一樣的目錄。

第二步,修改config.m4配置文件

config.m4的作用就是配合phpize工具生成configure文件。configure文件是用于環(huán)境檢測(cè)的。檢測(cè)擴(kuò)展編譯運(yùn)行所需的環(huán)境是否滿足。現(xiàn)在我們開始修改config.m4文件。

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

打開,config.m4文件后,你會(huì)發(fā)現(xiàn)這樣一段文字。

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 是注釋符號(hào)。上面的代碼說(shuō),如果你所編寫的擴(kuò)展如果依賴其它的擴(kuò)展或者lib庫(kù),需要去掉PHP_ARG_WITH相關(guān)代碼的注釋。否則,去掉 PHP_ARG_ENABLE 相關(guān)代碼段的注釋。我們編寫的擴(kuò)展不需要依賴其他的擴(kuò)展和lib庫(kù)。因此,我們?nèi)サ?span style="color: #0000ff">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])

第三步,代碼實(shí)現(xiàn)

修改say.c文件。實(shí)現(xiàn)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[] */
 };
 /* }}} */

第四步,編譯安裝

編譯擴(kuò)展的步驟如下:

$ phpize
$ ./configure
$ make  make install

修改php.ini文件,增加如下代碼:

[say]
extension = say.so

然后執(zhí)行,php -m 命令。在輸出的內(nèi)容中,你會(huì)看到say字樣。

第五步,調(diào)用測(cè)試

自己寫一個(gè)腳本,調(diào)用say方法??摧敵龅膬?nèi)容是否符合預(yù)期。

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP擴(kuò)展開發(fā)教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php+mysql數(shù)據(jù)庫(kù)操作入門教程》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》及《php常見數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP擴(kuò)展開發(fā)教程(總結(jié))
  • PHP擴(kuò)展開發(fā)入門教程
  • PHP內(nèi)核介紹及擴(kuò)展開發(fā)指南—基礎(chǔ)知識(shí)
  • 初步介紹PHP擴(kuò)展開發(fā)經(jīng)驗(yàn)分享
  • PHP7擴(kuò)展開發(fā)教程之Hello World實(shí)現(xiàn)方法示例
  • PHP7擴(kuò)展開發(fā)之基于函數(shù)方式使用lib庫(kù)的方法詳解
  • 快速開發(fā)一個(gè)PHP擴(kuò)展圖文教程
  • 詳解Window7 下開發(fā)php擴(kuò)展
  • 一個(gè)簡(jiǎn)單php擴(kuò)展介紹與開發(fā)教程
  • 關(guān)于嘗試開發(fā)PHP的MYSQL擴(kuò)展的使用
  • windows下開發(fā)并編譯PHP擴(kuò)展的方法
  • php擴(kuò)展開發(fā)入門demo示例

標(biāo)簽:濱州 白酒營(yíng)銷 曲靖 興安盟 太原 南京 株洲 南昌

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP7擴(kuò)展開發(fā)之hello word實(shí)現(xiàn)方法詳解》,本文關(guān)鍵詞  PHP7,擴(kuò),展開,發(fā)之,hello,word,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP7擴(kuò)展開發(fā)之hello word實(shí)現(xiàn)方法詳解》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于PHP7擴(kuò)展開發(fā)之hello word實(shí)現(xiàn)方法詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章