Skip to content

Instantly share code, notes, and snippets.

@niksudan
Last active August 29, 2015 14:10
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 niksudan/ce0d8fad4999115f2d66 to your computer and use it in GitHub Desktop.
Save niksudan/ce0d8fad4999115f2d66 to your computer and use it in GitHub Desktop.
Truncates a string [PHP]
<?php
/**
* Truncates a string
*
* @param string text
* @param int limit
* @return string
*/
function truncate( $text, $limit )
{
return strlen( $text ) > $limit ? substr( $text, 0, $limit - 3 ) . '...' : $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment