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


PHP interPool::getPlayersTradeGrandClub2方法代碼示例

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


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

示例1: foreach

    echo "</div>\n";
    echo "<div class=\"jqmnContent\" id=\"contentDetailPlayer_adv\">\n";
    echo "Please wait... <img src=\"/images/ajax-loader2.gif\" alt=\"loading\" />\n";
    echo "</div>\n";
    echo "<img src=\"/images/close_icon.png\" alt=\"close\" class=\"jqmClose\" />\n";
    echo "</div>\n";
    $detail_player_jqm_className = "player_jqm_adv";
}
echo "<TABLE style=\"margin-left:3px;width:85%;\">\n";
echo "<TR class=\"tr_title\">\n";
echo "<TH CLASS=\"tableHeaderRoundCorner\" COLSPAN=50 style=\"font-size:16px;\">Grand Club</th>\n";
echo "</tr>\n";
echo "</table>\n";
$compteur = 0;
foreach (array('TM', 'G', 'D', 'F') as $pos_en_trait) {
    $playersGCgerant1 = $pool->getPlayersTradeGrandClub2($id_pool, $gerant_sel, $periode, $id_saison, $can_trade_teams, $trade_howto_switch_players, $pos_en_trait, $salary_cap_enabled, $sess_id, $gerant_logged, $id_gerant2);
    $last_pos = "";
    //print_r($playersGCgerant1);
    foreach ($playersGCgerant1 as $value) {
        $valueA = explode("^", $value);
        $rank = $valueA[0];
        $id_player = $valueA[1];
        $first_name = $valueA[2];
        $last_name = $valueA[3];
        $pos = $valueA[4];
        $team_abbr = $valueA[5];
        $total_pts = $valueA[6];
        $pj_pool = $valueA[7];
        $trading_block = $valueA[8];
        $team_logo = $valueA[9];
        $team_logo2 = $valueA[10];
開發者ID:jfanctil,項目名稱:lamoria,代碼行數:31,代碼來源:tradeCenter_showGerantPlayers.php


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