You are here: Re: [PHP] file/array manipulation « PHP « IT news, forums, messages
Re: [PHP] file/array manipulation

Posted by Jochem Maas on 03/15/05 14:44

Mignon Hunter wrote:
> Hello

Hello Hello Hello (and 1 extra Hello just in case you decide to post the same question for a fourth time)

>
> I'm trying to manipulate a text(.csv) file using php. I've read the file and can print each line,
> but I need to write where column A is missing
>
> ColumnA ColumnB
>
> R ABC company
> ABC company
> ABC company
> ABC company
> O XYZ company
> XYZ company
> XYZ company
> XYZ company
>
> What I need to do is write a while loop (I think) to interate through the lines and populate ColumnA
> while ColumnB equals $var (ABC company then XYZ company), so that I end up with:
>
> ColumnA ColumnB
>
> R ABC company
> R ABC company
> R ABC company
> R ABC company
> O XYZ company
> O XYZ company
> O XYZ company
> O XYZ company
>
> Is this possible. What I've got so far to print out the file:
>
> $lines = file('test2.csv');

this function is where you want to start:
fgetcsv()



>
> // Loop through our array, and show line and numbers too.
> foreach ($lines as $line_num => $line) {

assuming you are not going to use fgetcsv() then you need to
split $line into seperate 'bits', for which the explode() function
is probably going to help. lets assume you have figured out how
to use explode()... in which case you if you explode() $line
you should have an array of which the first item is the value for
ColumnA in the current line.... if that item is empty replace it
with the value of ColumnA from the previous line (which you will have
to store in a temp var), also you will have to check whether the value
for ColumnB has changed - maybe its easier to parse the file twice,
on the first iteration you build up an array of all the distinct values
in columnB and the proper matching value in columnA - such an array can then
be used as a lookup.

// example of array structure you would have to build:
$arr = array(
'ABC company' => 'R',
'XYZ company' => 'O',
);

// example of looking up the proper value

$row = explode("\t", $line);
if (empty($row[ 0 ])) {
// columnA is empty
$row[ 0 ] = $arr[ $row[ 1 ] ];
}

// example of outputting the array that represents a row
echo join("\t", $row);

> echo "Line #<b>{$line_num}</b> : " . $line . "<br />\n";
> }
>
>
> Thanks in advance
>

 

Navigation:

[Reply to this message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация