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


PHP CMbArray::variance方法代碼示例

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


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

示例1: array

    $operations = $ds->loadList($sql);
    $old_plagesop = 0;
    $old_operation_id = 0;
    $nb_oper_par_plage = 0;
    $nb_plage[$_prat->user_id] = 0;
    $preparation[$_prat->user_id] = array();
    foreach ($operations as $keyOp => $curr_op) {
        if ($old_operation_id and $old_plagesop == $curr_op["plageop_id"]) {
            $testValid = 30 * 60 > $curr_op["sec_entree"] - $operations[$old_operation_id]["sec_sortie"];
            $testValid = $testValid && $operations[$old_operation_id]["sec_sortie"] < $curr_op["sec_entree"];
            if ($testValid) {
                $preparation[$_prat->user_id][] = $curr_op["sec_entree"] - $operations[$old_operation_id]["sec_sortie"];
                $nb_oper_par_plage++;
                if ($nb_oper_par_plage == 1) {
                    $nb_plage[$_prat->user_id] = $nb_plage[$_prat->user_id] + 1;
                }
            }
        } else {
            $nb_oper_par_plage = 0;
        }
        $old_operation_id = $keyOp;
        $old_plagesop = $curr_op["plageop_id"];
    }
    if (count($preparation[$_prat->user_id])) {
        // Mémorisation des données dans MySQL
        $sql = "INSERT INTO `temps_prepa` (`temps_prepa_id`, `chir_id`, `nb_prepa`, `nb_plages`, `duree_moy`, `duree_ecart`)\r\n            VALUES (NULL, \r\n                '{$_prat->user_id}',\r\n                '" . count($preparation[$_prat->user_id]) . "',\r\n                '" . $nb_plage[$_prat->user_id] . "',\r\n                '" . strftime("%H:%M:%S", CMbArray::average($preparation[$_prat->user_id])) . "',\r\n                '" . strftime("%H:%M:%S", CMbArray::variance($preparation[$_prat->user_id])) . "');";
        $ds->exec($sql);
        $ds->error();
    }
}
echo "Liste des temps de Préparation mise à jour";
開發者ID:fbone,項目名稱:mediboard4,代碼行數:31,代碼來源:httpreq_temps_prepa.php

示例2: testVariance

 public function testVariance()
 {
     $this->assertNull($this->stub->variance('notAnArray'));
     $this->assertEquals(42.050234508528, $this->stub->variance(array(0, 33, 101)));
 }
開發者ID:fbone,項目名稱:mediboard4,代碼行數:5,代碼來源:CMbArrayTest.php


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