Jump to content

Reading lines into an array


mbabli

Recommended Posts

Hello everyone,

    I am parsing an ini file for some data about the user, and I want to extract every line (and place it in an array as an array element). These lines are located in a javascript array. Here is what the text looks like

var NeededText =new Array(
"Needed-A",
"Needed-B",
"Needed-C"
);

So how can I get Needed-A, Needed-B & Needed-C in an array using php?

Any help would be appreciated.
Link to comment
https://forums.phpfreaks.com/topic/19067-reading-lines-into-an-array/
Share on other sites

Assume you have read your file into array (line by line) with name $myLines. You could write each line to the screen ,and do something else you wanted to, with something line:
[code]
for ($i=0; $i < count($myLines); $i++) {
    echo $myLines[$i].'<br />';
   //  do something else with this line
}
[/code]

Ronald   8)

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.