我有一個CSV文件,下面的代碼用於將CSV內容放入多維數組中。從CSV中輸出所有多維數組,數組數據 - PHP
<?php
$val = $_GET['articleid'];
//URL Pass STring
$arrCSV = array();
// Open the CSV
if (($handle = fopen("../articles/artlist.csv", "r")) !==FALSE) {
// Set the parent array key to 0
$key = 0;
// While there is data available loop through unlimited times (0) using separator (,)
while (($data = fgetcsv($handle, 0, ",")) !==FALSE) {
// Count the total keys in each row
$c = count($data);
//Populate the array
for ($x=0;$x<$c;$x++) {
$arrCSV[$key][$x] = $data[$x];
}
$key++;
} // end while
// Close the CSV file
fclose($handle);
} // end if
?>
我的第一部分是輸出整個數組。
我覺得下面這段代碼是錯誤的:(
<?php
for ($row = 1; $row <$arrCSV; $row++)
{
echo ''.$arrCSV[$row]['6'].'';
}
?>
然後我會把它想只列輸出一個[*] [6]。
我想我應該到這裏來的拳頭之前我嘗試休息。
任何指導,將幫助。
我努力學習,到目前爲止,我還這麼遠了。
謝謝
確定。我需要這部分.. <?php \t \t print_r($ arrCSV); \t?> – Arthor
好的..我正在看... – Arthor
你好,請任何人都可以幫助代碼。 – Arthor