psDayFromDate() Returns the Day (short 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 = psDayFromDate($stringDate);
Example:
$str = psDayFromDate("04/08/2011"); // returns "Fri"
Code:
// example "04/08/2011" returns Fri function psDayFromDate($wDate) { return date("D",strtotime($wDate)); }
Changlelog:
|