psDayFromDateNum() Returns the Numerical Day of week from a simple date (04/08/2011)
Description:
Use this to extract the Numerical day of the week from a date string
Usage:
$str = psDayFromDateNum($stringDate);
Example:
$num = psDayFromDateNum("04/08/2011"); // returns 5
Code:
// example "04/08/2011" returns 5 , 0-sun, 6-sat function psDayFromDateNum($wDate) { return date("w",strtotime($wDate)); }
Changlelog:
|
|