Ver Mensaje Individual
  #8 (permalink)  
Antiguo 25/07/2011, 14:23
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Pasar un array por el url

Es private $ImgOperations y desde dentro de tus métodos usas $this:
Código PHP:
Ver original
  1. class Foo
  2. {
  3.        private $_bar = null;
  4.  
  5.        public function something()
  6.        {
  7.               $this->_bar = 'foo';
  8.        }
  9.  
  10.        public function __toString()
  11.        {
  12.               return $this->_bar;
  13.        }
  14. }

Saludos.