5a-10a MF の放送中にストリーミング プレーヤーを表示し、放送中でないときに別のものを表示するページの一部を作成しようとしています。
これが私が今持っているものですが、機能していません。私はPHPがかなり新しいです。ありがとう!
<html>
<head>
<title>streaming</title>
</head>
<body>
<?php
//Get the current hour
$current_time = date(G);
//Get the current day
$current_day = date(l);
//Off air
if ($current_day == "Saturday" or $current_day == "Sunday" or ($current_time <= 5 && $current_time >= 10)) {
echo "We’re live Monday – Friday mornings. Check back then.";
}
// Display player
else {
echo "<a href="linktoplayer.html"><img src=http://www.psdgraphics.com/wp-content/uploads/2009/09/play.jpg></a>";
}
?>
</body>
</html>