我一直在使用這個腳本,並且沒問題。我將txt文件轉換爲csv,並且出現了一些未知錯誤。注意:未定義偏移
function Importcsv($filename) { $row = 0;
$col = 0;
$handle = @fopen($filename, "r");
if ($handle)
{
while (($row = fgetcsv($handle, 4096)) !== false)
{
if (empty($fields))
{
$fields = $row;
continue;
}
foreach ($row as $k=>$value)
{
$results[$col][$fields[$k]] = $value;
}
$col++;
unset($row);
}
if (!feof($handle))
{
echo "Error: unexpected fgets() failn";
}
fclose($handle);
}
return $results; }
$filename = "tm_data.csv";
$csvArray = Importcsv($filename);
foreach ($csvArray as $row)
{
echo $row['CITY'];
}
請讓我知道你是否有任何想法或發現過類似的問題。
請參閱幾個錯誤行 注意:未定義抵消:386 /Applications/XAMPP/xamppfiles/htdocs/tm_marketing/index.php在線20
注意:未定義抵消:387 /應用/ XAMPP/xamppfiles/htdocs中/ tm_marketing/index.php的上線路20
注意:未定義偏移:388在/Applications/XAMPP/xamppfiles/htdocs/tm_marketing/index.php線20上
注意:未定義偏移:389在線20上的/Applications/XAMPP/xamppfiles/htdocs/tm_marketing/index.php
注意:未定義抵消:390 /Applications/XAMPP/xamppfiles/htdocs/tm_marketing/index.php在線20
感謝,
發佈完整的錯誤消息,沒有它我們不能幫你。 – AntoineB
請注意以下幾行錯誤消息:注意:未定義的偏移量:386在/Applications/XAMPP/xamppfiles/htdocs/tm_marketing/index.php上線20 注意:未定義的偏移量:387在/ Applications/XAMPP/xamppfiles /的htdocs/tm_marketing/index.php的上線路20 注意:未定義偏移:388在/Applications/XAMPP/xamppfiles/htdocs/tm_marketing/index.php線20上 注意:未定義偏移:389 /應用程序/ XAMPP /第20行的xamppfiles/htdocs/tm_marketing/index.php 注意:未定義的偏移量:390位於/Applications/XAMPP/xamppfiles/htdocs/tm_marketing/index.php第20行 – user4773611
@ user4773611包含您的問題中的錯誤。你可以通過編輯你的問題來做到這一點。 – Epodax