Files
2026-04-15 15:24:53 +07:00

23 lines
316 B
PHP

<?php
class Info extends MY_Controller
{
function __construct()
{
parent::__construct();
}
function x($param = "")
{
print_r($_GET);
}
function index()
{
echo json_encode($this->sys_input);
}
function convert()
{
$resp = file_get_contents("php://input");
echo $resp;
}
}