graham23s Posted August 18, 2009 Share Posted August 18, 2009 Hi Guys, i have .txt file wich has a bunch of urls like: Scarboroughfutard:ch5108ap:http://site.com Smutzfutard:ch78374ap:http://site.com there is a few hundred of them like this, i was thinking of a way to loop each line and only take the url, then write the url in another .txt file clean of the gunk at the beginning but i can't think of a way to do it, i guess i need to load the .txt file but what would be the best way after that? any help would be appreciated thanks guys Graham Quote Link to comment https://forums.phpfreaks.com/topic/170888-looping-urls-in-txt-file/ Share on other sites More sharing options...
ignace Posted August 18, 2009 Share Posted August 18, 2009 $lines = file('path/to/file.txt'); $urls = array(); foreach ($lines as $line) { list($user, $pass, $url) = explode(':', $line); $urls[] = $url; } Quote Link to comment https://forums.phpfreaks.com/topic/170888-looping-urls-in-txt-file/#findComment-901319 Share on other sites More sharing options...
graham23s Posted August 18, 2009 Author Share Posted August 18, 2009 Hi Ignace, Thanks for that, that looks like what i'm after, the only thing is it only prints out "http" rather than the whole url. thanks mate Graham Quote Link to comment https://forums.phpfreaks.com/topic/170888-looping-urls-in-txt-file/#findComment-901329 Share on other sites More sharing options...
mikesta707 Posted August 18, 2009 Share Posted August 18, 2009 thats because there is a : after http. $lines = file('path/to/file.txt'); $urls = array(); foreach ($lines as $line) { list($user, $pass, $http, $url) = explode(':', $line); $urls[] = http.":".$url; } should work Quote Link to comment https://forums.phpfreaks.com/topic/170888-looping-urls-in-txt-file/#findComment-901333 Share on other sites More sharing options...
graham23s Posted August 18, 2009 Author Share Posted August 18, 2009 thanks guys sorted Graham Quote Link to comment https://forums.phpfreaks.com/topic/170888-looping-urls-in-txt-file/#findComment-901356 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.