PHP核心兩大流程之請求處理_PHP教程

來源:互聯網
上載者:User

PHP核心兩大流程之請求處理


static int php_handler(request_rec *r){/* Initiliaze the context */        php_struct * volatile ctx;        void *conf;        apr_bucket_brigade * volatile brigade;        apr_bucket *bucket;        apr_status_t rv;        request_rec * volatile parent_req = NULL;        TSRMLS_FETCH();......        zend_file_handle zfd;        zfd.type = ZEND_HANDLE_FILENAME;        zfd.filename = (char *) r->filename;        zfd.free_filename = 0;        zfd.opened_path = NULL;zend_execute_scripts(ZEND_INCLUDE TSRMLS_CC, NULL, 1, &zfd);......}ZEND_API int zend_execute_scripts(int type TSRMLS_DC, zval **retval, int file_count, ...) /* {{{ */{......EG(active_op_array) = \zend_compile_file(file_handle, type TSRMLS_CC);......zend_execute(EG(active_op_array) TSRMLS_CC);......}ZEND_API void execute(zend_op_array *op_array TSRMLS_DC)  {      // 初始化執行內容      zend_execute_data execute_data;        // 如果有異常就退出執行      if (EG(exception)) {          return;      }        /* Initialize execute_data */      EX(fbc) = NULL; // 初始化正在調用的函數      EX(object) = NULL; // 初始化正在調用的對象      EX(old_error_reporting) = NULL; // 初始化錯誤報表變數            // 為執行棧分配空間      if (op_array->T < TEMP_VAR_STACK_LIMIT) {          EX(Ts) = (temp_variable *) do_alloca(sizeof(temp_variable) * op_array->T);      } else {          EX(Ts) = (temp_variable *) safe_emalloc(sizeof(temp_variable), op_array->T, 0);      }      // 為臨時變數分配空間並初始化這些空間      EX(CVs) = (zval***)do_alloca(sizeof(zval**) * op_array->last_var);      memset(EX(CVs), 0, sizeof(zval**) * op_array->last_var);            EX(op_array) = op_array;            // 切換執行內容      EX(original_in_execution) = EG(in_execution);      EX(symbol_table) = EG(active_symbol_table);      EX(prev_execute_data) = EG(current_execute_data); // 將當前全域變數中的執行資料壓棧      EG(current_execute_data) = &execute_data; // 將當前執行內容壓棧        EG(in_execution) = 1;      // 初始化第一個指令(opcode)      /*     #define ZEND_VM_SET_OPCODE(new_op) \     CHECK_SYMBOL_TABLES() \     EX(opline) = new_op          execute_data.opline 為當前執行的 opcode     */      if (op_array->start_op) {          ZEND_VM_SET_OPCODE(op_array->start_op);      } else {          ZEND_VM_SET_OPCODE(op_array->opcodes);      }        if (op_array->uses_this && EG(This)) {          EG(This)->refcount++; /* For $this pointer */          if (zend_hash_add(EG(active_symbol_table), "this", sizeof("this"), &EG(This), sizeof(zval *), NULL)==FAILURE) {              EG(This)->refcount--;          }      }        // 將儲存opline的記憶體位址賦給 executor_globals.online_ptr ,可以即時跟蹤opcode的執行      EG(opline_ptr) = &EX(opline);        EX(function_state).function = (zend_function *) op_array;      EG(function_state_ptr) = &EX(function_state);  #if ZEND_DEBUG      /* function_state.function_symbol_table is saved as-is to a stack,      * which is an intentional UMR.  Shut it up if we're in DEBUG.      */      EX(function_state).function_symbol_table = NULL;  #endif            while (1) {  #ifdef ZEND_WIN32          if (EG(timed_out)) {              zend_timeout(0);          }  #endif                    // 迴圈調用每個opline的 handler 函數,如果是推出函數的話,傳回值大於0,就退出          if (EX(opline)->handler(&execute_data TSRMLS_CC) > 0) {        return;          }        }      zend_error_noreturn(E_ERROR, "Arrived at end of main loop which shouldn't happen");  }  

http://www.bkjia.com/PHPjc/914780.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/914780.htmlTechArticlePHP核心兩大流程之請求處理 static int php_handler(request_rec *r){/* Initiliaze the context */ php_struct * volatile ctx; void *conf; apr_bucket_brigade * volatile brigad...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.