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框架