1
public function _remap($method)
{
if ($method == 'some_method')
{
$this->$method();
}
else
{
$this->default_method();
}
}
이것은 공식 사이트에서 읽은 것입니다. 내가 알기로 _remap 메쏘드는 모든 액션 전에 호출된다. 그러나이 명령어 $this->$method();
은 $ method를 호출하면 _remap을 다시 호출 할 것이고 cycle과 같은 것을 의미합니다. 그렇지 않니? Codeigniter 2 : 컨트롤러에서 with_remap 메서드를 잘못 이해했습니다.