使用PHP在新闻时间显示DIV

时间:2015-05-08 16:54:20

标签: php

我有一个wordpress网站。我需要在新闻时间显示DIV。所以我在模板函数中有一个函数。它看起来像这样:

function kiroj_live_news() {
$week_day = date('w');
$current_time = date('Hi');

$show_news_div = false;
if ($week_day >= 1 && $week_day <= 5)
{
  if (($current_time >= '0430' && $current_time <= '0800') || ($current_time >= '1200' && $current_time <= '1300') || ($current_time >= '1700' && $current_time <= '1830') || ($current_time >= '2300' && $current_time <= '2330'))
  {
    $show_news_div = true;
  }
}
if ($week_day == 6)
{
  if (($current_time >= '0700' && $current_time <= '0830') || ($current_time >= '1700' && $current_time <= '1800') || ($current_time >= '1830' && $current_time <= '1900') || ($current_time >= '2300' && $current_time <= '2330'))
  {
    $show_news_div = true;
  }
}

if ($week_day == 0)
{
  if (($current_time >= '0600' && $current_time <= '0700') || ($current_time >= '1700' && $current_time <= '1800') || ($current_time >= '1830' && $current_time <= '1900') || ($current_time >= '2300' && $current_time <= '2359'))
  {
    $show_news_div = true;
  }
}
}

在我希望我的DIV显示的区域中,我有一个if:

<?php 
        $display = kiroj_live_news ();

        if ($display)
        {
          ?>
            <div class="live-news"><a href="http://www.kirotv.com/videos/news/kiro-newscast-hd2/vCYwYn/" target="_blank">Breaking News</a></div>
          <?php
        }

    ?>

我已在主函数中更改了时间,尝试了PHP手册(http://php.net/manual/en/function.date.php)中的其他日期()格式,我无法显示DIV。有人可以帮忙吗?

2 个答案:

答案 0 :(得分:0)

function kiroj_live_news() {

    //your code here

    ....

    return $show_news_div;

}

$display = kiroj_live_news();

......

您的功能不会返回任何内容 - 因此它总是FALSE

答案 1 :(得分:0)

这是我的最终解决方案(缩短了这个答案的目的):

function kiroj_live_news() {
$hour = date('G');
$day  = date('N'); // 1..7 for Monday to Sunday

if (($hour >= 2  && $hour <= 24)) { // 2am - midnight
    return '<div class="live-news"><a href="http://www.kirotv.com/videos/news/kiro-newscast-hd2/vCYwYn/" target="_blank">Breaking News</a></div>';
}}

然后我想要显示我的DIV的地方就不那么复杂了:

<?php echo kiroj_live_news(); ?>

感谢所有的帮助。