我已使用多部分表单将CSV上传到codeigniter,这是HTML代码:
<label for="enterCSV">Enter CSV
<input type="file" name="enterCSV" accept=".csv">
</label>
这是控制器上的php代码:
$csv = $_FILES['enterCSV']['name'];
$file = fopen($csv, r); //open file
while (!feof($file)){ //read till the end of the file
$content = fgetcsv($file); //get content of the file
}
我只是想使用我的php阅读上传的csv文件的内容并相应地操作它。
答案 0 :(得分:2)
你可以试试这个:
$csv = $_FILES['file']['tmp_name'];
$handle = fopen($csv,"r");
while (($row = fgetcsv($handle, 10000, ",")) != FALSE) //get row vales
{
print_r($row); //rows in array
//here you can manipulate the values by accessing the array
}