Files
liche/market/controllers/Welcome.php
T
2022-09-29 14:32:58 +08:00

17 lines
357 B
PHP

<?php
//ini_set("display_errors", "On");//打开错误提示
//ini_set("error_reporting",E_ALL);//显示所有错误
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(){
echo '11';
}
}