PHP读取CSV文件,如何编写代码来提问?
- 内容介绍
- 文章标签
- 相关推荐
本文共计76个文字,预计阅读时间需要1分钟。
phpfunction readCSV($csvFile) { $file_handle=fopen($csvFile, 'r'); while (!feof($file_handle)) { $line_of_text[]=fgetcsv($file_handle, 1024); } fclose($file_handle); return $line_of_text;}
用法:
function readCSV($csvFile){
$file_handle = fopen($csvFile, 'r');
while (!feof($file_handle) ) {
$line_of_text[] = fgetcsv($file_handle, 1024);
}
fclose($file_handle);
return $line_of_text;
}
用法:
<?php $csvFile = "test.csv"; $csv = readCSV($csvFile); $a = csv[0][0]; // This will get value of Column 1 & Row 1 ?>
本文共计76个文字,预计阅读时间需要1分钟。
phpfunction readCSV($csvFile) { $file_handle=fopen($csvFile, 'r'); while (!feof($file_handle)) { $line_of_text[]=fgetcsv($file_handle, 1024); } fclose($file_handle); return $line_of_text;}
用法:
function readCSV($csvFile){
$file_handle = fopen($csvFile, 'r');
while (!feof($file_handle) ) {
$line_of_text[] = fgetcsv($file_handle, 1024);
}
fclose($file_handle);
return $line_of_text;
}
用法:
<?php $csvFile = "test.csv"; $csv = readCSV($csvFile); $a = csv[0][0]; // This will get value of Column 1 & Row 1 ?>

