STB/init.php

17 lines
296 B
PHP
Raw Normal View History

2025-01-15 19:59:49 +01:00
<?php
require __DIR__ . "/autoload.php";
function e($str) {
return (htmlentities($str, ENT_QUOTES, 'UTF-8'));
}
function date_german($datum) {
list($jahr, $monat, $tag) = explode("-", $datum);
return("$tag.$monat.$jahr"); // Ausgabe: 20.10.2013
}
$container = new App\Core\Container();
?>