如何使用php的push_array为二维数组添加时间戳和值

时间:2012-08-11 05:09:43

标签: php multidimensional-array timestamp push square-bracket

如何使用array_push为带有方括号语法的二维数组添加时间戳和值?

我成功获取了行,每个行都带有mysql数据库中的时间戳和关联值。 在检索结果时,我将这些时间和值添加到数组中,如下所示:

while($row=mysqli_fetch_array($r, MYSQLI_ASSOC)){   
$q1_array[$i][0]= $row["time"];             
$q1_array[$i][1]= $row["val"]; // the value ("val") will either be 1 or 0 (ON or OFF)
$i++;
}

我需要最后一个数组包含偶数个元素(这将在30分钟的时间间隔内),所以我测试了它:

如果LAST数组元素(s?)具有时间戳和关联值1,我想在数组的末尾追加结束的半小时时间戳和0

if ($q1_array[sizeof($q1_array)-1][1] == 1){ 
//here I want to append a timestamp and value                       
}

另一方面,如果FIRST元素(s?)的时间戳具有相关值1,我想在数组的开头追加开始的半小时时间戳和{{{ 1}}。

0

真的很感激帮助!谢谢!

2 个答案:

答案 0 :(得分:0)

要在数组末尾添加新行,请写:

$new_row = array($timestamp, 0);
$q1_array[] = array($timestamp, 0);

要在数组的开头插入,请使用array_splice

array_splice($q1_array, 0, 0, $new_row);

答案 1 :(得分:0)

针对您的具体问题:

//process first element
if($q1_array[0][1] == 1){
    $time = roundTime($q1_array[0][0], 'start');
    $newElement = array( $time, 0 );
    array_unshift($q1_array, $newElement);
}

//process last element
$len = count($q1_array) - 1;
if($q1_array[$len][1] == 1){
    $time = roundTime($q1_array[$len][0], 'end');
    $newElement = array( $time, 0 );
    array_push($q1_array, $newElement);
}

//rounding function
//$timeIn = unix timestamp, $direction = 'start' or 'end'
function roundTime($timeIn , $direction){
    $tUnit = 1800; //seconds in half-hour
    if ($direction == 'start'){
        $output = floor($timeIn / $tUnit) * $tUnit;
    } else {
        $output = ceil($timeIn / $tUnit) * $tUnit;
    }
    return $output;
}

这适用于unix时间戳格式。如果使用MySQL datetime,您需要进行相应的转换。