Guest User

Untitled

a guest
Jan 16th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function getLink()
  2. {
  3. $text = $this->getUrl();
  4. if(strlen($text) > 40)
  5. {
  6. $text = sprintf( "%s...%s", substr($text, 0, 20), substr($text, -20, 20) );
  7. }
  8.  
  9. return sprintf('<a href="%s">%s</a>', $this->getUrl(), $text);
  10. }
Add Comment
Please, Sign In to add comment