我正在使用 cakephp 框架,我将一些变量传递到 url 以进行分页。我希望包含一个字符串并加入一个 isset
$this->Paginator->options(array('url' => array(isset($filterCompany)? $filterCompany : 'all'));
我需要的是在 isset 之前包含“公司:”
$this->Paginator->options(array('url' => array('company:'.isset($filterCompany)? $filterCompany : 'all'));
我收到一个错误(未识别的变量 $filterCompany),正确的速记方式是什么?