Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的网站中添加一个页面,我希望通过该页面进行在线考试。我希望我的页面仅激活 3 小时。3 小时后,该页面将像在线考试一样提交。谁能给我任何脚本如何使我的页面时间限制?
$time = date('Y-m-d H:i:s');
hour从中提取date并执行此操作
hour
date
if ($hour > 10800){ // 10800 which is equal to 3 hours in seconds. submit the exam }
不要依赖javascript设置时间,因为它javascript可能被禁用。
javascript