[Solved] Data Structure for keeping time and day of the week PHP
Untested and probably not the best way class TimeWeekday { private $hour; private $minute; private $day; private $days = array(‘Monday’, ‘Tuesday’, ‘Wednesday’, ‘Thursday’, ‘Friday’, ‘Saturday’, ‘Sunday’); public function __construct($hour, $minute, $day) { $this->hour = $hour; $this->minute = $minute; $this->day = $day; } public function add($hours, $minutes, $days = 0) { $newMinutes = $this->minute + $minutes; … Read more