Ortix Posted December 29, 2010 Share Posted December 29, 2010 This is a continuation of my previous post. I would like to be able to read the second column of a tab delimited txt file into a variable as a string. let's say i have: somegarbage_here readthisinto$file I'm looking for this but all tuts seem to be about importing it to arrays and what not. I just want to import the second column. There is always one line. Link to comment https://forums.phpfreaks.com/topic/222861-read-column-of-txt-file-into-variable/ Share on other sites More sharing options...
Ortix Posted December 29, 2010 Author Share Posted December 29, 2010 i don't see the edit button so: i manged to get this done with the explode() function. However what if i have this: somestuff_here a file name which has spaces in it Link to comment https://forums.phpfreaks.com/topic/222861-read-column-of-txt-file-into-variable/#findComment-1152398 Share on other sites More sharing options...
litebearer Posted December 29, 2010 Share Posted December 29, 2010 try this... <?PHP $lines = file("tabdel.txt"); $new_array = explode("\t", $lines[0]); $my_var = $new_array[1]; ?> Link to comment https://forums.phpfreaks.com/topic/222861-read-column-of-txt-file-into-variable/#findComment-1152400 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.