當前位置: 首頁>>代碼示例>>PHP>>正文


PHP complex_array::get_max_column_value方法代碼示例

本文整理匯總了PHP中complex_array::get_max_column_value方法的典型用法代碼示例。如果您正苦於以下問題:PHP complex_array::get_max_column_value方法的具體用法?PHP complex_array::get_max_column_value怎麽用?PHP complex_array::get_max_column_value使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在complex_array的用法示例。


在下文中一共展示了complex_array::get_max_column_value方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

  function _process_result_array($arr)
  {
    if(complex_array :: get_max_column_value('hosts', $arr, $index) !== false)
      $arr[$index]['max_hosts'] = 1;

    if(complex_array :: get_max_column_value('hits', $arr, $index) !== false)
      $arr[$index]['max_hits'] = 1;

    if(complex_array :: get_max_column_value('home_hits', $arr, $index) !== false)
      $arr[$index]['max_home_hits'] = 1;

    if(complex_array :: get_max_column_value('audience', $arr, $index) !== false)
      $arr[$index]['max_audience'] = 1;

    $result = array();
    foreach($arr as $index => $data)
    {
      if(date('w', $data['time']+60*60*24) == 1)
        $data['new_week'] = 1;

      $result[$index] = $data;
    }

    return $result;
  }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:25,代碼來源:stats_hits_hosts_list_datasource.class.php

示例2: current

	function _check_proper_nesting_strict($nodes, $level_limit=-1, $line='')
	{
		$l = complex_array :: get_min_column_value('l', $nodes, $index);
		$r = complex_array :: get_max_column_value('r', $nodes, $index);
		$node = current($nodes);
		
		$this->assertEqual($node['l'], $l, 
			'l is invalid: ' . $node['l'] . ' , expected : ' . $l . ' at line: ' . $line);

		$this->assertEqual($node['r'], $r, 
			'r is invalid: ' . $node['r'] . ' , expected : ' . $r . ' at line: ' . $line);
		
		$children = ($r - $l - 1)/2;
		
		if($children > 0)
		{
			$last_r = $this->_check_proper_nesting_recursive($nodes, $line, $l, $r, $children, $level_limit-1);
			
			if($last_r !== false && sizeof($nodes) > $level_limit)
				$this->assertEqual($node['r'] - $last_r, 1,
					'there is a gap between r ' . $node['r'] . ' and r ' . $last_r . ' at line: ' . $line);
		}
	}
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:23,代碼來源:nested_sets_driver_test.class.php


注:本文中的complex_array::get_max_column_value方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。