在Kohana 3中是否可以一起使用Controller_REST和Controller_Template?
现在我正在使用 Controller_Template,但希望拥有 RESTful URL,是否可以以某种方式一起使用这两个控制器?谢谢。
Right now I'm using Controller_Template would like to have RESTful URLs though, is it possible to use both the controllers together somehow? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,PHP 不支持多重继承。您需要使用另一个类扩展
Controller_Template
并手动将代码表单Controller_REST
复制到其中。No, PHP does not support multiple inheritance. You will need to extend
Controller_Template
with another class and manually copy the code formController_REST
into it.