天天看點

PHP解析csv檔案

php自帶有csv解析函數str_getcsv

<?php 
$Data = str_getcsv($CsvString, "\n"); //parse the rows 
foreach($Data as &$Row) $Row = str_getcsv($Row, ","); //parse the items in rows 
?>