Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/06/2014, 08:53
Avatar de hhs
hhs
Colaborador
 
Fecha de Ingreso: junio-2013
Ubicación: México
Mensajes: 2.995
Antigüedad: 10 años, 10 meses
Puntos: 379
Respuesta: Problema con imprimir Objeto

La clase alumnos no tiene implementado el metodo __toString()
Código PHP:
Ver original
  1. class alumnos
  2. {
  3.     // propiedades y metodos
  4.     public function __toString()
  5.     {
  6.          $this->alguna_propiedad; //
  7.     }
  8. }
__________________
Saludos
About me
Laraveles
A class should have only one reason to change.