class Index{ public function index(){ echo 'this is Index/index'; } public function add(){ echo 'this is Index/add'; } } $i = new Index(); $i->add();