时间:2021-07-01 10:21:17 帮助过:0人阅读
方法一:
<?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++; } } ?>
方法二:
$fh = fopen("contacts.csv", "r"); while($line = fgetcsv($fh, 1000, ",")) { echo "Contact: {$line[1]}"; }
以上所述就是本文的全部内容了,希望大家能够喜欢。
http://www.bkjia.com/PHPjc/1003992.htmlwww.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...