10 lines
195 B
PHP
10 lines
195 B
PHP
<?php
|
|
|
|
use DanHarrin\DateFormatConverter\Converter;
|
|
|
|
if (! function_exists('convert_date_format')) {
|
|
function convert_date_format($format)
|
|
{
|
|
return new Converter($format);
|
|
}
|
|
} |