psDayFromDateLong() Returns the Day (full name) of week from a simple date (04/08/2011)
Description:
Use this to extract the day of the week from a date string
Usage:
$str = psDayFromDateLong($stringDate);
Example:
$str = psDayFromDateLong("04/08/2011"); // returns "Friday"
Code:
// example "04/08/2011" returns Friday function psDayFromDateLong($wDate) { return date("l",strtotime($wDate)); }
Changlelog:
|