Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/09/2006, 07:04
Avatar de spider_boy
spider_boy
 
Fecha de Ingreso: diciembre-2003
Ubicación: Chile
Mensajes: 1.855
Antigüedad: 20 años, 4 meses
Puntos: 89
Ceros hacía la izquierda?...

Veamos...

if(strlen($numero) < 6)
{
$numero = str_pad($numero, strlen($numero)-6, STR_PAD_LEFT);
echo $numero;
}

En caso de no funcionar... ve la función str_pad
http://cl2.php.net/manual/en/function.str-pad.php

Nos vemos =)