Heim  >  Artikel  >  Backend-Entwicklung  >  php读取csc文件并输出,_PHP教程

php读取csc文件并输出,_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:53:10843Durchsuche

php读取csc文件并输出,

方法一:

<&#63;php
$row = 0;
$j = 1; // Linea por la que quieres empezar
$file = "name.txt"; //Nombre del fichero
if (($handle = fopen($file, "r")) !== FALSE) {
 while (($data = fgetcsv($handle, ",")) !== FALSE) {
   print_r($data);
   $j++;
   $row++; 
 }
}
&#63;>

方法二:

$fh = fopen("contacts.csv", "r");
while($line = fgetcsv($fh, 1000, ",")) {
  echo "Contact: {$line[1]}";
}

以上所述就是本文的全部内容了,希望大家能够喜欢。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1003992.htmlTechArticlephp读取csc文件并输出, 方法一: php$row = 0;$j = 1; // Linea por la que quieres empezar$file = "name.txt"; //Nombre del ficheroif (($handle = fopen($file, "r")) !== FAL...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn