当前位置: 首页>>代码示例>>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;未经允许,请勿转载。