Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/03/2011, 15:26
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 16 años, 4 meses
Puntos: 845
Respuesta: Zend -parametros por la url

Mmmmm, porque no utilizas Zend_Controller_Router_Route_Regex ?, algo así:

Código PHP:
Ver original
  1. $route = new Zend_Controller_Router_Route_Regex(
  2.     'custom/img/(.*)',
  3.     array(
  4.        'controller' => 'custom',
  5.        'action'     => 'another'
  6.     ),
  7.     array(
  8.         1 => 'img'
  9.     ),
  10.     'custom/img/%s'
  11. );

Saludos.
__________________
http://es.phptherightway.com/
thats us riders :)