Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

PHP READ TAB SEPARATED FILE

// OPENS A TAB SEPARATED FILE
// PUTS DATA INTO AN ARRAY AND SPLITS IT BY TAB
// LOOPS THROUGH CODE AND PRINT

   1  
   2  <?php
   3  
   4  $filename = "Book1.txt";
   5  $fd = fopen($filename,"r");
   6  $contents = fread ($fd,filesize ($filename));
   7  fclose($fd);
   8  
   9  $splitcontents = explode(" ", $contents);
  10  $counter = 0;
  11  
  12  foreach($splitcontents as $data){
  13  	echo $counter++;
  14  	echo ":  " . $data;
  15  	}
  16  
  17  
  18  ?>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS