Как извлечь данные из csv-файла в PHP
У меня есть файл csv, который выглядит так: $lines[0] = "text, with commas", "another text", 123, "text",5; $lines[1] = "some without commas", "another text", 123, "text"; $lines[2] = "some text with commas or no",, 123, "text"; И я хотел бы иметь таблицу: $t[0] = array("text, with commas", "another text", "123", "text","5"); $t[1] = array("some without […]