Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as PHP by Jose Ramirez ( 13 years ago )
<?php
function Acortartext($texto, $limite){
//La cadena a recortar
//$texto="En un lugar de León, de cuyo nombre quiero acordarme"; 
// Mostramos solo los 11 primeros caracteres por ejemplo: "En un lugar"
$count = strlen($texto);
if($count >= $limite) {
echo substr($texto, 0, $limite).'...'; 
}
else {
echo $texto;
}
}
Acortartext("Holaa", 15);
?>

 

Revise this Paste

Your Name: Code Language: