|
|
|
ขอถามเกี่ยวกับการกำหนดให้ User แต่ล่ะคนเข้าเว็บได้ไม่เกินคนล่ะ 10 นาทีครับ |
|
|
|
|
|
|
|
กำหนดอายุ session ให้มีอายุ 10 นาที หรือว่าใช้ javascript นับถอยหลัง ถึง 0 แล้ว clear session ไป
บอกได้แค่แนวทาง
|
|
|
|
|
Date :
2009-10-29 16:08:04 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เก็บเวลาที่ Login และก็ใช้ DateDiff ในการเปรียบเทียบครับ
Code (PHP)
<?php
function DateDiff($strDate1,$strDate2)
{
return (strtotime($strDate2) - strtotime($strDate1))/ ( 60 * 60 * 24 ); // 1 day = 60*60*24
}
function TimeDiff($strTime1,$strTime2)
{
return (strtotime($strTime2) - strtotime($strTime1))/ ( 60 * 60 ); // 1 Hour = 60*60
}
function DateTimeDiff($strDateTime1,$strDateTime2)
{
return (strtotime($strDateTime2) - strtotime($strDateTime1))/ ( 60 * 60 ); // 1 Hour = 60*60
}
echo "Date Diff = ".DateDiff("2008-08-01","2008-08-31")."<br>";
echo "Time Diff = ".TimeDiff("00:00","19:00")."<br>";
echo "Date Time Diff = ".DateTimeDiff("2008-08-01 00:00","2008-08-01 19:00")."<br>";
?>
เวลาเริ่มต้นกับเวลาปัจจุบัน ถ้าต่างมากกว่า 10 ก็๋ให้ทำเงื่อนไขที่ต้องการครับ
|
|
|
|
|
Date :
2009-10-29 16:21:25 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|