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

PHP READ TAB SEPARATED FILE (See related posts)

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

<?php

$filename = "Book1.txt";
$fd = fopen($filename,"r");
$contents = fread ($fd,filesize ($filename));
fclose($fd);

$splitcontents = explode(" ", $contents);
$counter = 0;

foreach($splitcontents as $data){
	echo $counter++;
	echo ":  " . $data;
	}


?>

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts