Cita:
Iniciado por grassofabian Los errores estan porque no estas definiendo bien las variables, es "$rut" y no "rut", como es "$nombre" y no "nombre", aca te dejo el codigo correcto:
Código PHP:
function getRut($rut) {
return $this->$rut;
}
function getNombre($nombre) {
return $this->$nombre;
}
Gracias amigo por contestar, lamentablemente tienes la respuesta incorrecta.
el codigo quedaria asi:
Código PHP:
Ver originalfunction getRut() {
return $this->rut;
}
function getNombre() {
return $this->nombre;
}
[B
]Quite el parametro en los get y funciono todo de maravilla
sin warning
[/B
]