Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/12/2005, 01:06
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 19 años, 1 mes
Puntos: 17
http://ar2.php.net/manual/es/function.count-chars.php

Código PHP:
<?php
$a 
"Ab 

cd"
;
$chars count_chars($a,1);
echo 
"Enters: ".$chars[13];
echo 
"Espacios: ".$chars[32];
?>