溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php7中如何創(chuàng)建擴(kuò)展

發(fā)布時(shí)間:2021-08-03 09:44:38 來(lái)源:億速云 閱讀:142 作者:小新 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)php7中如何創(chuàng)建擴(kuò)展,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

將實(shí)現(xiàn)如下功能:

<?phpecho 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)境是否滿足?,F(xiàn)在我們開(kāi)始修改config.m4文件。

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

打開(kāi),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ō),如果你所編寫(xiě)的擴(kuò)展如果依賴其它的擴(kuò)展或者lib庫(kù),需要去掉PHP_ARG_WITH相關(guān)代碼的注釋。否則,去掉 PHP_ARG_ENABLE 相關(guān)代碼段的注釋。我們編寫(xiě)的擴(kuò)展不需要依賴其他的擴(kuò)展和lib庫(kù)。因此,我們?nèi)サ鬚HP_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(confirm_say_compiled)
{
        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è)試

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

關(guān)于“php7中如何創(chuàng)建擴(kuò)展”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI