This commit is contained in:
2025-11-28 00:12:51 +01:00
parent 2d9118c308
commit e6a0a50c8f

View File

@@ -1,9 +1,8 @@
<?php <?php
<?php declare(strict_types=1);
//declare(strict_types=1);
// Header GANZ am Anfang, bevor IRGENDWAS ausgegeben wird // Header GANZ am Anfang, bevor IRGENDWAS ausgegeben wird
//header('Content-Type: text/plain; charset=utf-8'); header('Content-Type: text/plain; charset=utf-8');
// Optional: Fehlerausgabe für dieses Tool // Optional: Fehlerausgabe für dieses Tool
ini_set('display_errors', '1'); ini_set('display_errors', '1');
@@ -13,5 +12,5 @@ error_reporting(E_ALL);
// Projektbasis ermitteln: /public/landingpages/tools -> / (Projektroot) // Projektbasis ermitteln: /public/landingpages/tools -> / (Projektroot)
$baseDir = $_SERVER['DOCUMENT_ROOT']; $baseDir = $_SERVER['DOCUMENT_ROOT'];
// Tool-Script einbinden und ausführen // Tool-Script einbinden und ausführen
//require_once $baseDir . '/../tools/i18n_collect_keys.php'; require_once $baseDir . '/../tools/i18n_collect_keys.php';
// eof // eof