13 lines
196 B
PHP
13 lines
196 B
PHP
<?php
|
|
|
|
namespace app\common;
|
|
|
|
class CommonHelper
|
|
{
|
|
public static function getYear(string $title)
|
|
{
|
|
preg_match('/([0-9]+)/', $title, $y);
|
|
|
|
return $y[1] ?? date('Y');
|
|
}
|
|
} |