如何使用绝对路径存储文件?

How to store file with an absolute path?

如何使用绝对路径 /var/www/cityscape/public/storage/img/newyork.jpg 存储文件?

我试过Storage::put()https://laravel.com/docs/5.3/filesystem#storing-files),但是这个方法好像只接受相对路径。

如果您在问题中指定的路径与您的应用程序在同一系统中,您可以改用 File

File::put('/var/www/cityscape/public/storage/img/newyork.jpg', $theFile);

希望对您有所帮助!