mirror of
https://github.com/opensupports/opensupports.git
synced 2025-09-28 20:39:02 +02:00
11 lines
210 B
PHP
Executable File
11 lines
210 B
PHP
Executable File
<?php
|
|
class Date {
|
|
public static function getCurrentDate() {
|
|
return date('YmdHi');
|
|
}
|
|
|
|
public static function getPreviousDate() {
|
|
return date('YmdHi', strtotime(' -1 day '));
|
|
}
|
|
}
|