Written by
codeigniter-style
on
on
[CodeIgniter] 컨트롤러(Controllers) 사용방법
[CodeIgniter] 컨트롤러(Controllers) 사용방법
class Rmapping extends CI_Controller { public function _remap($method) { if($method === "zerg") { $this->zerg(); } else if($method === "protoss") { $this->protoss(); } else { $this->terran(); } } public function zerg() { echo "군단의 심장"; } public function protoss() { echo "공허의 유산"; } public function terran() { echo "자유의 날개"; } }
/* END of file Rmapping.php */ /* Location : ./application/controllers/Rmapping.php */
from http://magic.wickedmiso.com/171 by ccl(A) rewrite - 2020-04-18 09:26:26