Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/05/2009, 17:10
Avatar de dannce4life
dannce4life
 
Fecha de Ingreso: junio-2008
Ubicación: localhost
Mensajes: 137
Antigüedad: 15 años, 10 meses
Puntos: 6
Respuesta: unset() todas las variables

fijate si funciona esto
Código php:
Ver original
  1. function unset_all_vars($a)
  2. {
  3.     foreach($a as $key => $val)
  4.     {
  5.         unset($GLOBALS[$key]);
  6.     }
  7.     return serialize($a);
  8. }
  9.  
  10. unset_all_vars(get_defined_vars());
__________________
Gracias