12 lines
131 B
PHP
12 lines
131 B
PHP
<?php
|
|
|
|
/**
|
|
* getCurrentSeason
|
|
*
|
|
* Returns the current season
|
|
*/
|
|
|
|
function getCurrentSeason(): string
|
|
{
|
|
var_dump(date());
|
|
}
|