Ver Mensaje Individual
  #6 (permalink)  
Antiguo 17/08/2009, 14:52
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 7 meses
Puntos: 2135
Respuesta: como puedo convertir un result en array o xml o json

, no puedes regresar las dos cosas, necesitas regresar un objeto que englobe a tu resultado, por ejemplo:
Código PHP:
Ver original
  1. class A {
  2.        public function getB() {
  3.               return new B('blah');
  4.        }
  5. }
  6. class B {
  7.        private $_dato;
  8.  
  9.        public function __construct($dato) {
  10.                $this->_dato = $dato;
  11.        }
  12.  
  13.        public function getDato() {
  14.                return $this->_dato;
  15.        }
  16. }
  17.  
  18. $foo = new A();
  19. echo $foo->getB()->getDato();

Saludos.