php7擴展自動加載類.

使用php擴展來開發框架彷佛愈來愈來成來主流了,如phalcon,鳥哥的yaf。這些框架都以高性能著稱,相對純php使用的框架而,php擴展實現的框架更快,不會帶來額外的系統消耗。在php啓動時便已加載了框架,而且常駐內存。

幾乎全部框架都帶自動加載類,以便更好的管理代碼。php實現方法這裏就很少介紹了,讀者能夠自行百度。這裏將介紹如何在php擴展中實現。

擴展中的實現原理與php實現基本原理一致,都是基於 spl_autoload_register 函數實現。

ZEND_METHOD(lxx_request,run) {
    zval arg;//參數
    zval * pthis = getThis();//當前類

    array_init(&arg);//初始化數據,
    Z_ADDREF_P(pthis);

    add_next_index_zval(&arg, pthis);
    add_next_index_string(&arg, "load");//當前類的中load的方法,表態方法(ZEND_ACC_STATIC)

    /*zend_call_method_with_1_params arg爲數組參婁 php 代碼spl_autoload_register(['lxx\request','load']);*/
    zend_call_method_with_1_params(NULL, NULL, NULL, "spl_autoload_register", NULL, &arg);

   zval_ptr_dtor(&arg);
}


/*字符替換*/
static void str_replace(char *str,char o,char n) {
    while(*str != '\0') {
        if (*str == o) {
            *str = n;
        }
        str++;
    }
}

 ZEND_METHOD(lxx_request,load) {
    zend_string *cl;       /*php7中新增的數據類型 全用大寫S接收,小寫s則char指針*/
    long cl_len = 0;
    if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "S", &cl) == FAILURE) {
        RETURN_FALSE;
    }

    zend_file_handle zfd;
    zend_op_array *op_array;
    smart_str str = {0};
    smart_str_appendl(&str,cl->val,cl->len);
    smart_str_appendl(&str,".php",sizeof(".php")-1);
    smart_str_0(&str);

    str_replace(str.s->val,'\\','/');
    zfd.type = ZEND_HANDLE_FILENAME;
    zfd.filename = str.s->val;
    zfd.free_filename = 0;
    zfd.opened_path = NULL;
    zfd.handle.fp = NULL;

    op_array = zend_compile_file(&zfd,ZEND_INCLUDE); 

    if (zfd.opened_path) {
        zend_hash_add_empty_element(&EG(included_files),zfd.opened_path);
    }
    zend_destroy_file_handle(&zfd);

    if(op_array) {
        zend_execute(op_array,NULL);
        //zend_exception_restore();

        destroy_op_array(op_array);
        efree(op_array);

    }

    //zend_printf("<BR>%s 有沒有啊?帥不帥啊?",str.s->val);
    zend_string_release(cl);
    smart_str_free(&str);
}

註冊當前類php

ZEND_MODULE_STARTUP_D(lxx_request) {
    zend_class_entry ce;
    memset(&ce,0,sizeof(zend_class_entry));
    INIT_CLASS_ENTRY(ce,"Lxx\\request",lxx_request_functions);
    lxx_request_ce = zend_register_internal_class_ex(&ce,NULL);
    //lxx_request_ce->ce_flags = ZEND_ACC_EXPLICIT_ABSTRACT_CLASS;
}

測試數組

$cl = new Lxx\request();
$cl->run();

$ab = new abc\ab();
echo $ab->test("lxx");

在abc目錄下創建ab.phpphp7

namespace abc;
class ab {
    //php7新特性寫法,
    public function test(string $name) :string {
         return "Hi : ".$name;
    }
}

輸出app

Hi : lxx


源文來自:www.lxxbl.com框架

相關文章
相關標籤/搜索