directory structure

This commit is contained in:
2024-05-03 12:32:22 +02:00
parent e01c3c9fb0
commit 896d1936b6
8 changed files with 14 additions and 9 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
class Headers
{
static function json()
{
header('Content-Type: text/html; charset=utf-8');
header("Content-Type: text/json");
}
static function html()
{
header('Content-Type: text/html; charset=utf-8');
}
static function redirect(string $newUrl, bool $permanent = FALSE)
{
header('Location: ' . $newUrl, true, $permanent ? 301 : 302);
exit();
}
}