程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP基礎知識 >> php源碼— zend

php源碼— zend

編輯:PHP基礎知識
 

zend_execute_scripts 是php最核心一個函數,還有一個大名 php_execute_script

在文件 在文件Zend/zend_compile.h裡做了定義

ZEND_API int zend_execute_scripts(int type TSRMLS_DC, zval **retval, int file_count, …);

int file_count 表示變參的個數

…. 表示變參。

變參數實現原理,主要是利用 va_list,va_start,va_arg 實現變參
  

  #include "stdarg.h"
  #include <fstream>
  #include <iostream>
  #include <sstream>
  using namespace std;
  int bc(int number,...)
  {
   va_list t;
   int temp ;
   va_start(t, number);
   int i;
   for (i = 0; i < number; i++)
   {
   temp = va_arg(t,int);
   cout<<temp<<endl;
   }
  
  }
  
  int main(){
   bc(4,2,3,4,5);
  }

 

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved