Guest User

Untitled

a guest
Aug 16th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. while($s = fgets($fh,1024)){
  2. if($s==0)
  3. break;
  4. else if(strlen($s)>1)
  5. $array += explode(' ', $s);
  6. else
  7. $array += explode('', $s);
Add Comment
Please, Sign In to add comment