How can I take a list and make each row a value in an array?

If you have a text file that looks like this :

john|orange|cow
sam|green|goat
mick|red|dragon
Each line can magically be an element in the array using the PHP file()
function, like so :

$lines = file('info.txt');

print $lines[0]; // john|orange|cow
print $lines[1]; // sam|green|goat
print $lines[2]; // mick|red|dragon

Using explode() will help seperate the lines by the seperator, which in
this case is a '|' , the following will loop through the text file,
explode each line and print out the given parts. We're assuming that
the text file (info.txt) has this format :

name|color|animal
name|color|animal
name|color|animal



In the above, we could replace:

$p = explode('|', $line);

With:

list($name, $color, $animal) = explode('|', $line);

To create/define more _friendly_ variables to play with.

Related manual entries are as follows :

explode -- Split a string by string
http://www.php.net/manual/function.explode.php

foreach
http://www.php.net/manual/control-structures.foreach.php

file -- Reads entire file into an array
http://www.php.net/manual/function.file.php

II. Array Functions
http://www.php.net/manual/ref.array.php
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

I'm new to PHP, where should I start?

Well, try this.The official PHP web site as a lot of useful information:   ...

What's the best way to start writing a PHP program?

Firstly figure out, on paper, exactly what you want to do. Otherwise, you'll just be coding...

How can I call a command line executable from within PHP?

Check out the "Program Execution functions" here :...

What does parsing means in PHP?

Parsing is the process where the php source code (.php, .php3, .php4, .phtml orwhatever) is...