14 lines
194 B
PHP
14 lines
194 B
PHP
<?php
|
|
class Xraw extends MY_Controller
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
function index()
|
|
{
|
|
$headers = getallheaders();
|
|
echo json_encode($headers);
|
|
}
|
|
}
|