Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/10/2011, 10:55
rufus
 
Fecha de Ingreso: mayo-2009
Ubicación: Andalucia
Mensajes: 650
Antigüedad: 15 años
Puntos: 1
fallo de metodo

al acceder a una pagina me da este error:

Fatal error: Call to undefined function get_called_class() in /var/www/vhost/mudanzasavellan.es/home/html/includes/mudanza.php on line 91
Código PHP:

public static function instanciar($registro)
    {
        
// esta es la linea ke me falla pero no se por ke? $nombre_clase = get_called_class();
        
$objeto = new $nombre_clase;
        foreach(
$registro as $propiedad => $valor)
        {
            if(
$objeto->propiedad_existe($propiedad))
            {
                
$objeto->$propiedad $valor;
            }
        }