In Phalcon I finish one of my actions with forward response with parameters and I would need adding an anchor (e.g. to end the forwarded response with #blabla
.
return $this->dispatcher->forward(array(
'controller' => 'foo',
'action' => 'bar',
'params' => array(123),
));
Is that possible?