23 lines
316 B
PHP
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;
|
|
}
|
|
}
|