我创建了以下控制器:
class ControllerCommonTestSMS extends Controller
{
function index()
{
// action
}
}
但是如果我添加以下行,则会抛出错误,该函数未定义:
$this->customer->isLogged();
答案 0 :(得分:-2)
class ControllerCommonTestSMS extends Controller
{
function index()
{
if (!$this->customer->isLogged()) {
//code to be execu
}
}
}
这很好。