PHPで割り当てられた日付から過去3時間を検出する方法は? 最近のスクリプトがありますが、スクリプトのどこが間違っていたのかわかりません。
$currentdate = "2012-05-29 21:00:01";
$dateassigned = "2012-05-29 18:00:00";
$startTime = mktime() - 3*3600;
$getdate = strtotime($date);
if($getdate >= $startTime) {
//if get date already past with 3 hour this will show yes
echo "yes";
} else {
echo "no";
}
この問題の助けはありますか?ありがとうございました。