我正在使用 Restler 2.1.5,并且我有一个索引方法受保护的类。
protected function index($id){
//do something
}
我添加了新的受保护方法,但无法调用该方法。
protected function method(){
//do stuff
}
当我打电话http://localhost/api/index.php/class?key=foo
时它运行一切正常
但是当我打电话
http://localhost/api/index.php/method?key=foo
给我找不到
这可能是什么原因造成的?