Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.12 KB | None | 0 0
  1. <?phpfunction limitaChar($nome,$ini , $limit)
  2. {
  3.     $novoNome = substr($nome,$ini,$limit)."...";
  4.  
  5.     return $novoNome;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement