我正在将项目从Kohana 2升级到Kohana 3。
在Kohana 2版本中,在视图文件中写道:
if ($this->uri->segment('page'))
{
if ($this->uri->segment(5))
{
在Kohana 3中,我将其更改为
if ($this->request->param('page'))
{
if ($this->request->param('param5'))
{
但它提供了以下错误消息。
ErrorException [致命错误]:不在对象上下文中时使用$ this
我该如何解决这个问题?