Skip to content

Instantly share code, notes, and snippets.

@mdjwel
Last active May 13, 2018 13:38
Show Gist options
  • Save mdjwel/668d65d40749d7a6a6eda2393bb82f7f to your computer and use it in GitHub Desktop.
Save mdjwel/668d65d40749d7a6a6eda2393bb82f7f to your computer and use it in GitHub Desktop.
Limit latter (character) length function
<?php
// Limit latter
function prefix_limit_latter($string, $limit_length) {
if (strlen($string) > $limit_length) {
echo substr($string, 0, $limit_length) . '...';
}
else {
echo $string;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment