mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
8 lines
188 B
PHP
8 lines
188 B
PHP
<?php
|
|
|
|
function string2Date($datestring)
|
|
{
|
|
$date = DateTimeImmutable::createFromFormat('j.m.Y', $datestring);
|
|
if ($date === false) return null;
|
|
return $date->format('Y-m-d');
|
|
} |