|
发表于 2015-6-6 15:40:51
|
显示全部楼层
*/
class Resetpwd extends CI_Controller (MY_Controller)
{
function __construct()
{
# code...
parent::__construct();
}
public function index()
{
echo "index";
}
public function message($p1,$p2)
{
echo "message".$p1.$p2;
}
}
继承CI_Controller就能正常访问,继承MY_Controller, 永远都到index里面,很奇怪 |
|