Advertisement
Protocol_

Type function

Apr 12th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.09 KB | None | 0 0
  1. function type($str){
  2. for($i = 0; $i <= strlen($str) - 1; $i++){
  3. echo $str[$i];
  4. sleep(1);
  5. }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement