Files
BE_IBL/application/controllers/Xraw.php
2026-04-15 15:24:53 +07:00

14 lines
194 B
PHP

<?php
class Xraw extends MY_Controller
{
function __construct()
{
parent::__construct();
}
function index()
{
$headers = getallheaders();
echo json_encode($headers);
}
}