0

I'm using the recess framework. Suppose I have a URL like this

www.example.com/try.php?this=5

In recess, what do i do to access the value of parameter this ??

4

1 に答える 1

1
$this->request->get['this'];

これらの変数{->get[]、-> post []}は、使用されている動詞に関係なく入力されます。

于 2011-11-29T06:11:31.740 に答える