Files
liche/api/controllers/Welcome.php
T
2021-11-30 15:57:08 +08:00

18 lines
364 B
PHP
Executable File

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller {
public function index()
{
$this->load->view('welcome_message');
}
public function test(){
$this->load->library('TcOrc');
$img = '';
$result = $this->tcorc->BizLicense($img);
print_r($result);
}
}