Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9169205
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:49:02+00:00 2026-06-17T15:49:02+00:00

I am trying to select only certain columns from a csv using PHP. Currently

  • 0

I am trying to select only certain columns from a csv using PHP. Currently I am using:

$theData = array(
    array( 'col1', 'col2', 'col3', 'col4', 'col5' ),
    array( 'col1', 'col2', 'col3', 'col4', 'col5' ),
    array( 'col1', 'col2', 'col3', 'col4', 'col5' )
    );
$picked = '1, 3, 5';

$totalColumns = count( $theData[0] );
$columns = explode( ',', $picked );
foreach( $theData as $k => &$thisData ) {
    for( $x = 1; $x < $totalColumns + 1; $x++ ) {
        if( ! in_array( $x, $columns ) ) {
            unset( $thisData[$x - 1] );
        }
    }
}

Can anyone suggest any better solutions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T15:49:05+00:00Added an answer on June 17, 2026 at 3:49 pm
    $picked  = array(1, 3, 5);
    $theData = array();
    if (($handle = fopen("test.csv", "r")) !== FALSE) {
        while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
            $numCols = count($data);
            $row     = array();
            for($c=0; $c < $numCols; $c++)
                if(in_array($c, $picked))
                    $row[] = $data[$c];
            $theData[] = $row;
        }
        fclose($handle);
    }
    

    Edit, per OP request

    Here we map column names from the first row into integers used to select those columns, rather than require the numeric identifier for the column. Untested, but I imagine it’s close.

    $names      = array('Heading 1', 'Heading 2', 'Heading 3');
    $picked     = array();
    $theData    = array();
    $isFirstRow = true;
    if (($handle = fopen("test.csv", "r")) !== FALSE) {
        while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
            $numCols = count($data);
            $row     = array();
    
            // process the first row to select columns for extraction
            if($isFirstRow) {
                for($c=0; $c<$numCols; $c++)
                    if(!in_array($data[$c], $names)
                        continue;
                    else
                        $picked[] = $c;
                $isFirstRow = false;
            }
    
            // process remaining rows
            else {
                for($c=0; $c < $numCols; $c++)
                    if(in_array($c, $picked))
                        $row[] = $data[$c];
                $theData[] = $row;
            }
        }
        fclose($handle);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to select only few columns from a certain (Blobs) table. I
I am trying to select records from a database only if they match today's
I am trying to select the last record from a table in MySQL using
I am trying to select an object from this array and print all of
I am trying to find the correct jquery way to select only a certain
I am trying to find out how to allow users to only select certain
I am trying to force users to only select certain values when adding a
I'm trying to show a second select element only if a certain option of
I'm trying to preform a SELECT query that grabs data from two tables only
I am trying to select only the topmost section H1s. In this fiddle ,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.