关于codeigniter 最基本的 “hello word ”的问题

2024-12-16 02:39:09
推荐回答(2个)
回答1:

class Test extends CI_Controller {
function __construct(){
parent::__construct();
}

public function index()
{
echo 'Hello World!';
}
}
?>
试试

回答2:

application/controllers/test.php
这样才可以
不然会显示错误

class Test extends CI_Controller {

function index()
{
echo 'Hello World!';
}
}
?>