Home  >  Article  >  Backend Development  >  请问个关于限制时间段访问网页代码

请问个关于限制时间段访问网页代码

WBOY
WBOYOriginal
2016-06-13 11:47:56985browse

请教个关于限制时间段访问网页代码
    我网站现在的限制访问时间段是24小时制,也就是可以从开始时间00:01到24:00结束,现在我想要从开始时间10:00到02:00结束就用不了,请问怎么用代码可以这样限制时间访问吗?
------解决方案--------------------
你原来只有类似
date('H:i') >= $起始时间 and  date('H:i') 这样一条判别
加一条判别就是
date('H:i') >= $起始时间1 and  date('H:i') or
date('H:i') >= $起始时间2 and  date('H:i') 
------解决方案--------------------

冲什么突?


引用:
Quote: 引用:

你原来只有类似
date('H:i') >= $起始时间 and  date('H:i') 这样一条判别
加一条判别就是
date('H:i') >= $起始时间1 and  date('H:i') or
date('H:i') >= $起始时间2 and  date('H:i') 

这样不起冲突吗?
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn