1
我使用這個表單來選擇一個文件,我不知道如何才能得到這個文件在我的PHP函數的路徑。Symfony獲取文件路徑
<form class="dropzone">
<input name="file" type="file" multiple />
</form>
我想要得到的路徑,把它放在一個變量,並用它來閱讀CSV文件,如:
public function importAction(Request $request)
{
$myFilePath = ''; //what should i do here?
$csv = Reader::createFromPath($myFilePath); // I use it now like this '../path/myFile1.csv'
}
任何幫助,將不勝感激。
這是不完整的解決方案,我不想保存文件,我只是想獲得選擇路徑。 –
您可以使用$ dir變量來獲取路徑 –