OriginalDavid Posted January 15, 2008 Share Posted January 15, 2008 Using curl I have made my PHP script fetch a file which has lots of artist names it reads something along the lines of... artist 1 artist 2 artist 3 artist 4 and so on i think it goes up at times as high as about artist 25... each new line is seperated by "\n" what I want to do is parse the file and then display the first 3 artists. I'd imagine it would be in an array so I could do echo $artist[0]; and so on... but I just cant get it to work. Anyone able to help me? Thanks David Quote Link to comment https://forums.phpfreaks.com/topic/86171-parse-multiple-lines/ Share on other sites More sharing options...
GingerRobot Posted January 15, 2008 Share Posted January 15, 2008 You can explode() the data returned from cURL (making sure you have the curl option, RETURNTRANSFER, set to true, so the file is returned to a string, rather than being echoed). That will generate the array of lines for you. e.g.: <?php $output = curl_exec($ch); $lines = explode("\n",$output); for($x=0;$x<3;$x++){ echo $lines[$x]."<br />\n"; } ?> However, you may find it easier to use the file() function, which will return an array of the lines in the file. Quote Link to comment https://forums.phpfreaks.com/topic/86171-parse-multiple-lines/#findComment-440087 Share on other sites More sharing options...
Fyorl Posted January 15, 2008 Share Posted January 15, 2008 Yeah using file() with a http wrapper should be able to grab the file for you. Quote Link to comment https://forums.phpfreaks.com/topic/86171-parse-multiple-lines/#findComment-440105 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.