Guest User

Untitled

a guest
Jun 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $file=fopen("./mazes/1.txt","r");
  2. $lineCount = 0;
  3. $arrayLine=array();
  4. $arrayBlock=array();
  5. while(!feof($file)) {
  6. $arrayBlock=explode(",", fgets($file));
  7. $arrayLine[$lineCount] = $arrayBlock;
  8. $lineCount++;
  9. }
  10. echo $arrayLine . '<br>';
Add Comment
Please, Sign In to add comment