首先,我想阅读用户正在上传并将数据保存到DB的excel文件。 我尝试使用excel API加载函数。
Excel::load($file_name_real, function($input) {
$results = $input->all();
// $input->dump();
})->download('xls');
但它没有发生所以现在我想将文件移动到服务器然后将读取文件然后将取消链接。通过以下功能
$input1->move('/laravel');
但它没有移动文件。