first commit

This commit is contained in:
bob 2025-02-03 19:29:59 +01:00
parent 735274944f
commit 32f3e0c785
43 changed files with 10512 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<?php
$itemBeforeAt = preg_split("/[@]+/", $item)[0];
$itemAfterAt = preg_split("/[@]+/", $item)[1];
$itemYear = substr($item, 0, 2);
$itemMonth = substr($item, 2, 2);
$itemDay = substr($item, 4, 2);
$itemHour = substr($item, 7, 2);
$itemMinute = substr($item, 9, 2);
$itemTitle = substr($itemBeforeAt, 12);
?>