Files
Jump/jumpapp/classes/Greeting.php
2022-02-04 10:47:59 +00:00

25 lines
511 B
PHP

<?php
namespace Jump;
class Greeting {
private array $greetings;
public function __construct() {
$this->greetings = [
03 => 'morning',
12 => 'afternoon',
16 => 'evening',
19 => 'night'
];
}
public function get_greeting(): string {
krsort($this->greetings);
foreach ($this->greetings as $key => $value) {
if (date('H', time()) >= $key) {
return $value;
}
}
}
}