PHP + MySQL:时间作为数字的字符串

时间:2011-08-17 08:03:05

标签: php mysql jpgraph

我正在为我的项目创建一个钻取时间图。

目前,在DB中,它将钻取持续时间存储为时间字段。 以MM:SS形式检索时间,因此5分30秒表示为05:30 我选择的图形包(jpgraph)需要将数值作为数组传递给它。

使用下面的代码我得到了:

数组([0] => 00:03:25 [1] => 00:04:23 [2] => 00:03:48 [3] => 00:02:48 [ 4] => 00:03:09 [5] => 00:02:25)

我猜测00:03:25是如何存储为字符串的(以任何方式确认动态类型?)。

我可能需要的是:

A)表示为十进制分钟:

数组([0] => 3.417 [1] => 4.383 [2] => 3.800 [3] => 2.800 [4] => 3.150 [5] => 2.433)

B)表示为整数秒:

数组([0] => 205 [1] => 267 [2] => 228 [3] => 168 [4] => 189 [5] => 145)

是否有任何现有功能已经执行此操作或者我必须正则表达式才能完成类似的事情,因为PHP idate函数似乎合适但似乎只返回0的数组给我(参见下面的代码)... < / p>

当我从SQL中获取时,我使用以下函数执行此操作:

public static function queryDB($aSQLQuery,&$aResult,&$aNumResult){
    $aResult = mysql_query($aSQLQuery);
    $aNumResult = mysql_num_rows($aResult);
}

//Returns User aIDNum's 6 most recents attempts of aExcerNum
public static function getTimes($aIDNum, $aExcerNum, &$aResult,&$aNumResult){
    $query = "  SELECT * FROM (
                    SELECT *
                    FROM Times
                    WHERE   uid =   ".$aIDNum."     AND
                            exid =  ".$aExcerNum."  
                    ORDER BY Date DESC
                    LIMIT 6
                ) AS T1 ORDER BY Date ASC;";
    DBHelper::queryDB($query, $aResult, $aNumResult);
}

public static function processTimeData($aResult, $aNumResult, &$aArray){
    for( $i=0; $i<$aNumResult; $i++){
        $row = mysql_fetch_array($aResult);
        $aArray[$i] = DBHelper::txtP($row, 'Date');
    }
    $paddingData = 6 - $aNumResult;
    for ( $j=0; $j < $paddingData; $j++){
        $aArray[ ($j+$aNumResult) ] = 0;
    }
}

public static function txtP($aRow, $aString){
    return htmlspecialchars(stripslashes($aRow[$aString]));
}

像这样使用:

DBHelper::getTimes($userID, $excerciseID, $aResult,$aNumResult);
DBHelper::processTimeData($aResult,$aNumResult,$timeData);

我尝试使用PHP idate():

public static function processTimeData($aResult, $aNumResult, &$aArray){
    for( $i=0; $i<$aNumResult; $i++){
        $row = mysql_fetch_array($aResult);
        //Tried "i" (Minutes) and "s" (seconds)
                    $aArray[$i] = iDate("i",$aRow['Time']);
                    //$aArray[$i] = iDate("s",$aRow['Time']);
    }
    $paddingData = 6 - $aNumResult;
    for ( $j=0; $j < $paddingData; $j++){
        $aArray[ ($j+$aNumResult) ] = 0;
    }
}

结果:

数组([0] =&gt; 0 [1] =&gt; 0 [2] =&gt; 0 [3] =&gt; 0 [4] =&gt; 0 [5] =&gt; 0)

2 个答案:

答案 0 :(得分:1)

好吧,你可以像这样转换成秒:

// "00:03:25" -> 205
Date("s",strtotime("00:03:25")) + Date("i",strtotime("00:03:25"))*60 + Date("G",strtotime("00:03:25"))*3600;

编辑:在代码中添加了strtotime()

答案 1 :(得分:0)

找到自己的解决方案:

感谢Ragnar让我想到了什么!

processTimeData更改如下:

public static function processTimeData($aResult, $aNumResult, &$aArray){
    for( $i=0; $i<$aNumResult; $i++){
        $row = mysql_fetch_array($aResult);
        $date = new DateTime( DBHelper::txtP($row,'Time') );
        $aArray[$i] = intval($date->format('s')) + intval($date->format('i'))*60 + intval($date->format('G'))*3600;
    }
    $paddingData = 6 - $aNumResult;
    for ( $j=0; $j < $paddingData; $j++){
        $aArray[ ($j+$aNumResult) ] = 0;
    }
}