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


PHP interPool::getRevues方法代碼示例

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


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

示例1: count

?>
" />


<!-- popup caché de l'ajustement des pondérations -->
<div class="jqmWindowAjustPonderations" id="jqmAjustPonderations">
<div class="jqmdTL"><div class="jqmdTR"><div class="jqmdTC jqDrag">Ajustement des pondérations</div></div></div>
<div class="jqmdBL"><div class="jqmdBR"><div class="jqmdBC">

<div class="jqmdMSG">
<?php 
echo "<TABLE CLASS=\"drafts_stats\" ALIGN=\"center\" border=0 cellspacing=3 cellpadding=3>\n";
echo "<tr>\n";
echo "<TH CLASS=\"tableHeaderRoundCorner4\" colspan=10>Mettre un pourcentage pour chaque catégorie.<br>Le total doit obligatoirement donner 100%.</TH>\n";
echo "</tr>\n";
$revuesA = $pool->getRevues($id_saison);
$ponderationsA = $pool->draftKitPonderationsGerant($id_pool, $gerant, $id_saison);
echo "<input type=\"hidden\" id=\"nbre_revues\" value=\"" . count($revuesA) . "\">\n";
$somme = 0;
//$somme += $predict_pool;
foreach ($revuesA as $revue) {
    $revue_id = $revue["id"];
    $revue_nom = $revue["nom"];
    echo "<tr>\n";
    echo "<td style=\"padding-left:5px;padding-right:5px\" nowrap>Prédictions de la revue '{$revue_nom}'</td>\n";
    if ($ponderationsA["revue{$revue_id}"] != "") {
        $predict_revue = $ponderationsA["revue{$revue_id}"];
    } else {
        $predict_revue = 0;
    }
    echo "<td>" . "<input type=\"text\" id=\"revue{$revue_id}\" name=\"revue{$revue_id}\" value={$predict_revue} " . "maxlength=3 style=\"padding-left:5px;\" " . "onfocus=\"if (this.value==0) this.value='';\" " . "onblur=\"if (this.value=='') this.value=0; else calcul_somme_ponderations();\"/>" . "</td>\n";
開發者ID:jfanctil,項目名稱:lamoria,代碼行數:31,代碼來源:draft_kit.php

示例2: switch

 echo "<tr>\n";
 echo "<td>";
 echo "<input type=\"button\" class=\"Btn1\" value=\"Efficacité des prédictions des revues\" " . "onclick=\"javascript:document.stats_predictions.choix_stats_predic.value='efficacite';document.stats_predictions.submit();\" /></center>";
 echo "</td>\n";
 echo "<td>";
 echo "<input type=\"button\" class=\"Btn1\" value=\"Classement NHL virtuel\" " . "onclick=\"javascript:document.stats_predictions.choix_stats_predic.value='classement';document.stats_predictions.submit();\" /></center>";
 echo "</td>\n";
 echo "<td>";
 echo "<input type=\"button\" class=\"Btn1\" value=\"Efficacité des gérants\" " . "onclick=\"javascript:document.stats_predictions.choix_stats_predic.value='efficacite_gerant';document.stats_predictions.submit();\" /></center>";
 echo "</td>\n";
 echo "</tr>\n";
 echo "</table>\n";
 echo "</form>\n";
 switch ($choix_stats_predic) {
     case "efficacite":
         $revuesA = $pool->getRevues($id_saison2show);
         if ($id_saison == $id_saison2show) {
             echo "<br><center>Disponible à la fin de la saison...</center>\n";
         } elseif (count($revuesA) == 0) {
             echo "<br><center>Aucune statistique disponible pour cette année-là...</center>\n";
         } else {
             foreach ($revuesA as $revueA) {
                 echo "<div id=\"ajax\">\n";
                 echo "<table cellpadding=0 cellspacing=0 border=0 align=\"center\">\n";
                 echo "<tr>\n";
                 echo "<th CLASS=\"tableHeaderRoundCorner\" colspan=10>% d'efficacité de la revue '{$revueA['nom']}'</th>";
                 echo "</tr>\n";
                 echo "<tr>\n";
                 echo "<th CLASS=\"tableHeader1\">Écart</th>";
                 echo "<th CLASS=\"tableHeader2\">% prédic.<br>dans l'écart</th>";
                 echo "</tr>\n";
開發者ID:jfanctil,項目名稱:lamoria,代碼行數:31,代碼來源:draft_stats.php


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