Laravel Create File Object from Path Example

July 27, 2020 | Category : Laravel

Now, let's see example of how to create image object from path in laravel. if you have question about laravel create image object from path then i will give simple example with solution. i explained simply about laravel create file object from url how to create file object in laravel. let’s discuss about laravel create file object from path. You just need to some step to done how to create image object from path in laravel.

Whenever you need to create file object from absolute path in laravel then this post will help you to creating image object from url in laravel. sometime we need to store image into folder using storage then you need to create file object from path. Then that object can be use.

So let's see bellow controller code and output as bellow:

Controller Code:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Symfony\Component\HttpFoundation\File\UploadedFile;

class FileController extends Controller

{

/**

* The attributes that are mass assignable.

*

* @var array

*/

public function create()

{

$fileObject = $this->createFileObject(public_path('datatable-angular.png'));

dd($fileObject);

}

/**

* The attributes that are mass assignable.

*

* @var array

*/

public function createFileObject($url){

$path_parts = pathinfo($url);

$newPath = $path_parts['dirname'] . '/tmp-files/';

if(!is_dir ($newPath)){

mkdir($newPath, 0777);

}

$newUrl = $newPath . $path_parts['basename'];

copy($url, $newUrl);

$imgInfo = getimagesize($newUrl);

$file = new UploadedFile(

$newUrl,

$path_parts['basename'],

$imgInfo['mime'],

filesize($url),

true,

TRUE

);

return $file;

}

}

Output:

I hope it can help you...