标签: php laravel-5
如何使用Laravel将所有上传的文件移动到E:驱动器?这是我的代码:
$test = "E:"; $path = "checklist/uploads"; $destinationPath = $test . "/$path/"; if (!file_exists($destinationPath)) { mkdir($destinationPath); }