sh4d0w Posted December 2, 2008 Share Posted December 2, 2008 Hi! I'm doing a script that has to sort all the word on a file but I'm having some troubles.... how can i store the words from the file on an array and then after sorting them passing it back to the file in order or just sort it from the file directly??? if anyone can it would really help me out thanks each line on the file has just one word its sorta like a word list. also sorry for my first post being a question i promise i'll help out with anything i can. Link to comment https://forums.phpfreaks.com/topic/135175-solved-help-sorting-words-from-a-file/ Share on other sites More sharing options...
Garethp Posted December 2, 2008 Share Posted December 2, 2008 Try something to this effect, I'm not providing all the code just yet, it'd be best if you googled it //Read the file into $Contents (is fread() the right syntax?) $Contents = split(" ", $Contents); $New = ""; foreach ($Contents as $v) { $New =. $v . "\n\r"; } //Write $New into the file (fwrite()?) Link to comment https://forums.phpfreaks.com/topic/135175-solved-help-sorting-words-from-a-file/#findComment-704017 Share on other sites More sharing options...
Mark Baker Posted December 2, 2008 Share Posted December 2, 2008 The file() function reads the entirety of the specified file into an array, one element for each line. You can then use normal array sorting functions to sort the array however you wish Then just loop through the array writing each element back to the file Link to comment https://forums.phpfreaks.com/topic/135175-solved-help-sorting-words-from-a-file/#findComment-704140 Share on other sites More sharing options...
sh4d0w Posted December 2, 2008 Author Share Posted December 2, 2008 Thanks a lot you guys i got it to work This is how i got it to work if (isset($_POST['sort'])){ $words = file($filename); sort($words); file_put_contents ($filename, $words); } Thanks again!!! Link to comment https://forums.phpfreaks.com/topic/135175-solved-help-sorting-words-from-a-file/#findComment-704215 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.