“Создать файл в Laravel” Ответ

Создать файл в Laravel

namespace App\Http\Controllers;
use File;
class FileController extends Controller
{
    public function downloadJSONFile(){
      $data = json_encode(['Element 1','Element 2','Element 3','Element 4','Element 5']);
      $file = time() .rand(). '_file.json';
      $destinationPath=public_path()."/upload/";
      if (!is_dir($destinationPath)) {  mkdir($destinationPath,0777,true);  }
      File::put($destinationPath.$file,$data);
      return response()->download($destinationPath.$file);
    }
}
Indian Gooner

Файл магазина Laravel

$path = $request->file('avatar')->store(
    'avatars', 'public'
);
Faithful Fox

Ответы похожие на “Создать файл в Laravel”

Вопросы похожие на “Создать файл в Laravel”

Больше похожих ответов на “Создать файл в Laravel” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования