lollipop

A PHP-framework
Log | Files | Refs

commit 4408df8030a54fb1a614b77200779042bca07851
parent c9a2daa18b9ea453666bfd7ffce7ee60bbe2603d
Author: Friedel Schön <[email protected]>
Date:   Sun, 25 Jun 2023 17:22:52 +0200

mime type router by extension

Diffstat:
MLollipop/Router.php | 14++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/Lollipop/Router.php b/Lollipop/Router.php @@ -1,5 +1,10 @@ <?php +const MIME_TYPES = array( + "css" => "text/css", + "js" => "text/javascript" +); + namespace Lollipop { class Router { @@ -12,8 +17,13 @@ namespace Lollipop { } protected function set_mime(string $file) { - header("Content-Type: " . (mime_content_type($file) ?? "text/html")); - } + $ext = pathinfo($file, PATHINFO_EXTENSION); + + if (array_key_exists($ext, MIME_TYPES)) + return MIME_TYPES[$ext]; + else + return "text/html"; + } protected function match(string $match, array &$route_vars): bool {