我想拼湊一個php腳本來輸出不同的文本,這取決於它是什麼日期和一天的時間。插入文本取決於一天中的時間和星期幾
實施例: 平日(週一至週五),我想輸出文本根據時間下列期間(24H,服務器時間,UTC): 00:00-08:00:「的Lorem ipsum「 08:00-13:00:」dolor sit amet「 13:00-15:00:」Pellentesque habitant「 15:00-15:30:」dolor sit amet「 15:30-24: 00:「Lorem存有」 週末(週六,週日),我想輸出下面的文本在這個時間段: 00:00-24:00「Lorem存有」
任何人都可以用PHP幫助腳本來做到這一點?
我已經在css-tricks forum得到了一些幫助。他們提供了這個代碼:
<?php
$date = strtotime("now");
$hour = date("H", $date);
switch($hour) {
case 00:
case 01:
case 02:
case 03:
case 04:
case 05:
case 06:
case 07:
case 08:
$dets = array("img" => "image1.png", "txt" => "Lorem ipsum");
break;
case 09:
case 10:
case 11:
case 12:
case 13:
$dets = array("img" => "image2.png", "txt" => "dolor sit amet");
break;
case 14:
case 15:
case 16:
$dets = array("img" => "image3.png", "txt" => "Pellentesque habitant");
break;
case 17:
case 18:
case 19:
case 20:
case 21:
case 22:
case 23:
case 24:
$dets = array("img" => "image1.png", "txt" => "Lorem ipsum");
break;
}
echo "<img src='$dets[img]' alt='$dets[txt]' />";
?>
但它適用於所有日子,並且只在整整幾個小時。我希望能夠指定每半小時和每天的基礎。
還是php-noob,所以我希望有人能幫助我。
@webbiedave Yikes,當然。感謝您的支持。 – meagar 2010-04-26 21:31:54
哈哈。別客氣。 – webbiedave 2010-04-26 21:33:38
http://stackoverflow.com/questions/16218517/using-the-time-to-retrieve-specific-content-from-a-database-through-php – 2013-04-25 19:06:56