PHP-Course/headers.php
Kilian Kurt Hofmann 09ad98ba14 Better structure
2024-04-26 11:54:36 +02:00

9 lines
96 B
PHP

<?php
class Headers
{
static function json()
{
header("Content-Type: text/json");
}
}