Skip to content

Instantly share code, notes, and snippets.

@caioerick
Created December 1, 2014 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save caioerick/f46cccb0833d2169fb24 to your computer and use it in GitHub Desktop.
Save caioerick/f46cccb0833d2169fb24 to your computer and use it in GitHub Desktop.
<?php
$string = "Computação";
diminuiString($string, 8);
function diminuiString($string, $tamanho) {
$maximo = $tamanho;
if(strlen($string) < $maximo) {
echo $string;
}
else {
for($i=0;$i<$maximo;$i++) {
echo $string[$i];
}
echo '...';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment