同じチーム名 (変数$home_team['team_name']
およびで出力される$away_team['team_name']
) が、
if ($game_date_converted == $next_monday)
声明。
チーム名が 2 回以上表示される場合 (たとえば、2 回表示される場合)、そのテキストを赤で表示したいと考えています。
簡単な英語では、ゲームのリストで、チーム名 (ホーム チームまたはアウェイ チームのいずれか) が 2 回表示される場合、そのチーム名を赤で表示します。
ご協力ありがとうございました!
<?php foreach ($games as $game) { ?>
<?php
$team_id = $game['home_team_id'];
$home_team = sw::shared()->teams->getForID($team_id);
$away_team_id = $game['away_team_id'];
$away_team = sw::shared()->teams->getForID($away_team_id);
$leagues = sw::shared()->packages->getAll();
$game_date = $game['date'];
$game_date_converted = date('Y-m-d', strtotime($game_date));
$date_converted = date('l', strtotime($game_date));
?>
<?php if ($game_date_converted == $next_monday) { ?>
<tr>
<td><?php echo $home_team['team_name']; ?></td>
<td><?php echo $away_team['team_name']; ?></td>
<!-- more HTML -->