PHP reads the contents of a CSV file

Source: Internet
Author: User

Read data from all rows in a CSV file at once

<?php $file = fopen (' windows_2011_s.csv ', ' R '); while ($data = Fgetcsv ($file)) {//reads a single line of content//print_r ($data) per CSV;//This is an array, to get each data, access the array subscript can $goods_list[] = $data;} Print_r ($goods _list);/* foreach ($goods _list as $arr) {if ($arr [0]!= "") {echo $arr [0]. "    <br> "; }} */echo $goods _list[2][0]; Fclose ($file);? >



Reads a row of data from a CSV file

<?phpfunction Get_file_line ($file _name, $line) {$n = 0;  $handle = fopen ($file _name, ' R ');        if ($handle) {while (!feof ($handle)) {+ + $n;        $out = Fgets ($handle, 4096);    if ($line = = $n) break;  } fclose ($handle);  if ($line = = $n) return $out; return false;} Echo get_file_line ("Windows_2011_s.csv", 10);? >



Read CSV file number of rows (line interval)

<?phpfunction get_file_line (  $file _name,  $line _star,   $line _end) {      $n  = 0;     $handle  = fopen ($file _name, "R");     if  ($handle)  {        while  (!feof ($handle) )  {            ++ $n;              $out  = fgets ($handle,  4096);             if ($line _star <=  $n) {                  $ling [] =  $out;             }             if  ($line _end ==  $n)  break;         } &nbsP;      fclose ($handle);     }    if (   $line _end== $n)  return  $ling;     return false;} $aa  = get_file_line ("Windows_2011_s.csv",  11, 20);   //from line 11th to line 20th foreach  ($ aa as  $bb) {    echo  $bb. " <br> ";}? >





PHP reads the contents of a CSV file

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.