Skip to content

Instantly share code, notes, and snippets.

@cam-gists
Created August 20, 2012 16:04
Show Gist options
  • Select an option

  • Save cam-gists/3405387 to your computer and use it in GitHub Desktop.

Select an option

Save cam-gists/3405387 to your computer and use it in GitHub Desktop.
PHP: Ellipsis
<?php
function ellipsis($string, $max_length) {
return (strlen($string) > $max_length) ? substr($string,0,strrpos(substr($string, 0, $max_length), ' '))."…" : $string;
}
print ellipsis("All your base are belong to us", 20);
# All your base are…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment