![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhccwBzboa8S7faFsNEArq_HkFC2mAXCZfRzY-LOT-2cDwwaIXDCuWtBRES__ggDWJYjRdIXLHg15v3RtGIzTbLGlGvXGC0UbObS9-PXpG2cdnPvLgGe-rbp6YvZGuPv1IajRvy/s1600/iPhone+Calendar.png)
function isWeekend($day, $month, $year)
{
//---set time zone---
date_default_timezone_set('Asia/Singapore');
$time = mktime(0, 0, 0, $month, $day, $year);
$day = date('w', $time);
return ($day == 0 || $day == 6);
}
This use this function, simply pass it the day, month, and year:
if (isWeekend(23,1,2015)) {
echo "Yeah, weekend!";
} else {
echo "Nah, weekday";
}
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3u_2L42odW-ssWSw5o7pDRHwDrPnmvWLAnu2LqSThEBhmGyRKhg0JZB_3f4Ru-O-nPtyPWZ7YLQQYIq7qZBhUqM_dXhv2usYG2q-pNyXY-8fck15D-zQBWfKcQMsheEa0rDzD/s1600/Course+Calendar+Button.png)
No comments:
Post a Comment