-1

我正在使用 CakePhp2 并尝试从 url 获取变量的值。

我的网址看起来像controller/action/foo:bar/foo2:bar2/foo3:bar3

当我使用$this->request['foo']CakePhp 时说“未定义的索引”。

找到 foo、foo2 和 foo3 的值的任何想法?

4

2 回答 2

2

检查命名参数的文档。它很可能在

$this->request->params['named']

甚至更容易/更清洁 2.x:

$this->request->named

所以 debug($this->request->named) 了解详情。

于 2012-09-13T15:12:21.890 回答
0

尝试

$this->passedArgs
OR
$this->request->params['pass']

您想访问传递的参数。

于 2012-09-13T15:21:44.027 回答