を使用してコントローラーで POST/GET パラメーターを送信することは可能ですか?
$this->_forward("/url/here");
を使用してコントローラーで POST/GET パラメーターを送信することは可能ですか?
$this->_forward("/url/here");
public function fooAction()
{
// forward to another action in the current controller and module:
$this->_forward('bar', null, null, array('baz' => 'bogus'));
}
public function barAction()
{
// forward to an action in another controller:
// FooController::bazAction(),
// in the current module:
$this->_forward('baz', 'foo', null, array('baz' => 'bogus'));
}
public function bazAction()
{
// forward to an action in another controller in another module,
// Foo_BarController::bazAction():
$this->_forward('baz', 'bar', 'foo', array('baz' => 'bogus'));
}
マニュアルによると、配列でパラメーターを送信できます。最後の引数にする必要があります。