91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

drupal7 中drupal_static函數源碼分析

發布時間:2020-07-22 04:13:18 來源:網絡 閱讀:684 作者:ADUJ 欄目:web開發

我們在學習drupal7中,經常在看到函數中調用drupal_static()函數做靜態緩存,提高函數的效率。在drupal_static()函數中,用到了PHP的static靜態變量知識,這對于在同一個代碼文件中,反復調用同一個函數,而函數的結果又可以做緩存處理時,是非常有用的。在drupal7中有如下兩個函數:

  1. drupal_static($name,$default_value = NULL,$reset = FALSE);

  2. drupal_static_reset($name = NULL);

drupal7的API代碼如下:

https://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/drupal_static/7.x

function &drupal_static( $name,$default_value = NULL,$reset = FALSE ){
    static $data = array(),$default = array();
	//First check if dealing with a previously define static varibale
	if( isset( $data[$name] ) || array_key_exists($name,$data) ){
	    //不為空 $name $data[$name] $default[$name] 靜態變量也存在
		if( $reset ){
		    $data[$name] = $default[$name];
		}
		return $data[$name];
	}
	//$data[$name] 或者 $default[$name] 都不存在靜態變量中
	if( isset( $name ) ){
	    if( $reset ){
		    //在默認設置之前調用重置 而且必須返回一個變量
			return $data;
		}
		$default[$name] = $data[$name] = $default_value;
		return $data[$name];
	}
    //當$name == NULL 重置所有
	foreach( $default as $name=>$value ){
	    $data[$name] = $value;
	}
    //As the function returns a reference, the return should always be a variable
	return $data;
}
//drupal_static_reset()的參考代碼
function drupal_static_reset( $name = NULL ){
    drupal_static($name,NULL,TRUE);
}

針對上面兩個函數,測試代碼如下:

  1. 可做靜態緩存案例

function test1(){
	$result = false;
     $result = &drupal_static(__FUNCTION__);
	 if( !$result ){
	     error_log( 'test1test1test1test1test1' );
		 $result = 'get test1';
	 }
	 return $result;
}
$a = test1();
echo $a;//get test1 輸出error_log日志
$b = test1();
echo $b;//get test1 但不會有error_log日志

2. 可恢復靜態變量初始值測試

function test1(){
	static $result = 1;
	$result = &drupal_static(__FUNCTION__,1);
	 echo $result;
	 $result++;
}

$a = test1();
echo $a;//1
$b = test1();
echo $b;//2
drupal_static_reset('test1');//此處將靜態變量又重置為初始值
$c = test1();
echo $c;//1

以上代碼僅供參考,具體使用請參看drupal7官方文檔

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

交口县| 石阡县| 津南区| 固镇县| 紫阳县| 河东区| 额济纳旗| 平湖市| 泰顺县| 明光市| 镇赉县| 马鞍山市| 湖州市| 措美县| 池州市| 林周县| 河间市| 南开区| 鄂托克旗| 通海县| 吕梁市| 黔江区| 乌兰浩特市| 中山市| 大同县| 双城市| 根河市| 泰来县| 射阳县| 右玉县| 巴彦县| 于田县| 吴堡县| 固始县| 阿拉善右旗| 沽源县| 玉门市| 湘阴县| 阿合奇县| 南宁市| 商南县|