本文整理汇总了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;
}
示例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);
}
}