Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a csv file with traceroutes, the last entry in every row is the target IP, but as there are variable no of records in every row ...so I am having difficulty I want to collect the last entry from every row into a column

how do I do that?

share|improve this question

1 Answer

up vote 1 down vote accepted

PHP has a nice function fgetcsv().

Example:

if (($handle = fopen("x.csv", "r")) !== FALSE)//your file
{
    echo "<table><tr><th>Row</th><th>ID</th><th>Name</th></tr>";
    $num_rows = 7440; //number of rows in your CSV file.
    for($w=0; $w<$num_rows; $w++)
    {
        $data = fgetcsv($handle, 1000, ",");
        echo "<tr>
        <td>{$w}</td>
        <td>{$data[0]}</td>
        <td>{$data[1]}</td>
        </tr>";
    }
    echo "</table>";
    fclose($handle);
}
else
{
    die('fopen failed');
}

To collect the value from the last cell in each row, do the following inside the for loop:

echo $data[(count($data)-1)];

Although, this only needs to be done if the number of cells in each row varies or if you actually don't know.
Otherwise do what's in the example above and just specify it; e.g. if the last cell in each row is always in column C then you collect the value from $data[2] (in the for loop)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.