我正試圖讀取csv文件中只帶有紅色標籤的列。有沒有一個PHP函數來做到這一點或symfony包? 現在我在讀csv文件與fgetcsv功能:從PHP讀取csv列的顏色
foreach($request->files->get('importFile') as $file) {
if (($handle = fopen($file->getRealPath(), "r")) !== FALSE) {
// get the rest of the rows
$data = array();
$i = 0;
while ($row = fgetcsv($handle, 0, ';')) {
if($i>1) {
$data[] = $row;
$i++;
}
print_r($data);die;
}
}
}
但它不讀取標籤的color.Is有沒有辦法讀了CSV文件中的顏色?
您不能在csv中設置任何行的顏色,因爲csv只是基於文本的 –