python datetime check weekend code example
Example 1: python get timestamp of today
import datetime;
ts = datetime.datetime.now().timestamp()
Example 2: php check weekday of date
$dayofweek = date('w', strtotime($date));
$result = date('Y-m-d', strtotime(($day - $dayofweek).' day', strtotime($date)));