-1

我想请人帮助我。

我需要一个链接在某些时间之间可见,比如晚上 6 点和凌晨 1 点。在我的网站上注册的客户可以在他们的管理面板中更改商店开放和关闭时间的时间,并连接到数据库中的表。

该链接只需要在客户通过其控制面板决定的指定时间可见。在这些时间之外,链接是隐藏/不可见且不可点击的。

所以这需要为每个客户从数据库表中调用/回显时间。

任何帮助都会很棒。非常感谢

标记

4

2 回答 2

1

你可以使用类似...

// check if the date (current hour) is between two times, 
// if it is, assign the link to $link, else assign nothing to $link
$link = date('H') >= 6 && date('H') <= 20 ? '<a href="#">Link</a>' : ''; // replace hardcoded hours with vars if needed
echo $link;
于 2013-05-13T23:44:18.047 回答
0

尝试这个:

// Assuming $userMin and $userMax are the users specified times
$time = date( 'H' );
if( $time > $userMin && $time < $userMax ) {
    echo "<a href='linkUrl'>Description</a>";
}
于 2013-05-13T23:34:51.977 回答