Jump to content

parse multiple lines


OriginalDavid

Recommended Posts

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

 

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.