Hey :).

Im trying to migrate from ZFW 0.8 to 0.9.1 and I saw that I have a lot of issues there, for example, Zend_Input_Filter was dropped :S, so how can I filter the POST or GET methods ? cause actually im doing something like this:

class MyControllerController extends Zend_Controller_Action
{
   public function MyAccionAction
   {
      // Filter $_POST method.
       $objFilterPost = new Zend_Filter_Input( $_POST );

      // Get array data.
      $arrMyArray = $objFilterPost->getRaw( 'my_array' );
   }
}


Thx.

Reply via email to