Skip to content

Instantly share code, notes, and snippets.

@aufi
Created January 6, 2012 12:06
Show Gist options
  • Save aufi/1570288 to your computer and use it in GitHub Desktop.
Save aufi/1570288 to your computer and use it in GitHub Desktop.
osekání text na maximální délku utf
function osekej($retezec, $delka) {
//vypise jenom zadany pocet znaku (od zacatku)
if (strlen($retezec) > $delka)
$konec = "..";
else
$konec = "";
return mb_substr($retezec, 0, $delka, 'UTF-8') . $konec;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment