format("l d F Y"); } public function PrettyTime(?string $target): string { if($target == [] || $target == "" || $target == null) return "meow :3"; $temp = new DateTime( datetime: $target, ); return $temp->format("h:i:s A"); } public function PrettyDateTime(?string $target): string { return $this->PrettyDate(target: $target) . " at " . $this->PrettyTime(target: $target); } }