cheesycarrion Posted February 7, 2008 Share Posted February 7, 2008 <?php $textfile = asort(file("file.txt")); foreach ($textfile as $line_num => $line) { echo $line . "\n"; ?> goal: sort each line of a text document alphabetically Link to comment https://forums.phpfreaks.com/topic/89830-solved-sort-text-file/ Share on other sites More sharing options...
marcus Posted February 7, 2008 Share Posted February 7, 2008 <?php $file = file('file.txt'); asort($file); foreach($file AS $line){ echo $line . "<br>\n"; } ?> file.txt you make lemons taste bad results: bad lemons make taste you Link to comment https://forums.phpfreaks.com/topic/89830-solved-sort-text-file/#findComment-460358 Share on other sites More sharing options...
cheesycarrion Posted February 7, 2008 Author Share Posted February 7, 2008 thanks for the quick response. In soviet russia bad lemons make taste you! Link to comment https://forums.phpfreaks.com/topic/89830-solved-sort-text-file/#findComment-460361 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.