Right now I'm using Controller_Template would like to have RESTful URLs though, is it possible to use both the controllers together somehow? Than开发者_如何转开发ks.
No, PHP does not support multiple inheritance. You will need to extend Controller_Template
with another class and manually copy the code form Controller_REST
into it.
精彩评论