Files
PHP-Course/headers.php
T
2024-04-26 11:54:36 +02:00

9 lines
96 B
PHP

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