日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
PHP如何自定義擴(kuò)展(一)之基本步驟

php自定義擴(kuò)展(一)

成都創(chuàng)新互聯(lián)公司IDC提供業(yè)務(wù):綿陽機(jī)房托管,成都服務(wù)器租用,綿陽機(jī)房托管,重慶服務(wù)器租用等四川省內(nèi)主機(jī)托管與主機(jī)租用業(yè)務(wù);數(shù)據(jù)中心含:雙線機(jī)房,BGP機(jī)房,電信機(jī)房,移動(dòng)機(jī)房,聯(lián)通機(jī)房。

記得第一次寫php擴(kuò)展是直接百度的,照著網(wǎng)上寫完了一個(gè)擴(kuò)展,但自己不知所以然,先看看一個(gè)擴(kuò)展得基本步驟吧,然后再探討其中得原理。

利用源碼工具自動(dòng)生成擴(kuò)展目錄結(jié)構(gòu)

先進(jìn)入php源碼ext目錄下執(zhí)行下面命令

/www/test/php/php/bin/php ext_skel.php --ext helloworld
cd helloworld

修改config.m4配置文件,就是現(xiàn)在寫的擴(kuò)展是否用到外部依賴,就配置--with-hello選項(xiàng),否則配置--enable-hello選項(xiàng),按照自己的需求把注釋去掉

dnl If your extension references something external, use 'with':
 PHP_ARG_WITH([helloworld],
   [for helloworld support],
   [AS_HELP_STRING([--with-helloworld],
     [Include helloworld support])])

dnl Otherwise use 'enable':

擴(kuò)展功能書寫

然后vim helloworld.c進(jìn)行擴(kuò)展功能代碼書寫
先看下模塊結(jié)構(gòu)定義

zend_module_entry helloworld_module_entry = {
        STANDARD_MODULE_HEADER,
        "helloworld",                                   /* Extension name */
        helloworld_functions,                   /* zend_function_entry */
        PHP_MINIT(helloworld),                                                  /* PHP_MINIT - Module initialization */
        NULL,                                                   /* PHP_MSHUTDOWN - Module shutdown */
        PHP_RINIT(helloworld),                  /* PHP_RINIT - Request initialization */
        NULL,                                                   /* PHP_RSHUTDOWN - Request shutdown */
        PHP_MINFO(helloworld),                  /* PHP_MINFO - Module info */
        PHP_HELLOWORLD_VERSION,         /* Version */
        PHP_MODULE_GLOBALS(pib),
    NULL,
    NULL,
    NULL,
    STANDARD_MODULE_PROPERTIES_EX
};

功能函數(shù)名字集合

static const zend_function_entry helloworld_functions[] = {
        PHP_FE(helloworld_test1,                arginfo_helloworld_test1)
        PHP_FE(helloworld_test2,                arginfo_helloworld_test2)
        PHP_FE_END
};

真正的功能函數(shù)代碼

PHP_FUNCTION(helloworld_test2)
{
        int argc = ZEND_NUM_ARGS();
        char *messages = NULL;
        size_t   messages_len = 0;
        char *context = NULL;
        size_t   context_len = 0;

        zend_string *retval;

        ZEND_PARSE_PARAMETERS_START(0, 2)
                Z_PARAM_OPTIONAL
                Z_PARAM_STRING(messages, messages_len)
                Z_PARAM_STRING(context, context_len)
        ZEND_PARSE_PARAMETERS_END();

        retval = strpprintf(0, "Hello %s test %s", messages, context);

        RETURN_STR(retval);
}

函數(shù)參數(shù)定義

ZEND_BEGIN_ARG_INFO(arginfo_helloworld_test2, 0)
        ZEND_ARG_INFO(0, str)
ZEND_END_ARG_INFO()

編譯安裝

/www/test/php/php/bin/phpize
./configure --with-php-config=/www/test/php/php/bin/php-config
make && make install

現(xiàn)在PHP的擴(kuò)展目錄中已經(jīng)有了helloworld.so這個(gè)文件,在php.ini中添加上擴(kuò)展的配置

extension = helloworld.so

然后就可以測(cè)試自己寫的函數(shù)了helloworld_test2();完成了一個(gè)擴(kuò)展后,感覺自己也沒什么收獲,對(duì)為什么要這么寫一點(diǎn)都不知道其中得原理,下編就來談?wù)撈渲械迷戆?,先從php生命周期開始介紹,見下篇。


當(dāng)前名稱:PHP如何自定義擴(kuò)展(一)之基本步驟
URL網(wǎng)址:http://www.dlmjj.cn/article/djdsppo.html