How to Get File Extension from Path in Laravel?

By Hardik Savani November 5, 2023 Category : PHP Laravel

You can simply use pathinfo() for get file extension from string in php laravel. we might some time require to get file extension from location of file or image in laravel 6, laravel 7, laravel 8, laravel 9 and laravel 10.

Here will show you simply way to get file extension from storage path or public path. we will use pathinfo() of code php.

we will use pathinfo() with PATHINFO_EXTENSION parameter to getting image extension in php laravel framework.

Example 1:

$extension = pathinfo(storage_path('/uploads/my_image.jpg'), PATHINFO_EXTENSION);

dd($extension);

Example 2:

$infoPath = pathinfo(public_path('/uploads/my_image.jpg'));

$extension = $infoPath['extension'];

dd($extension);

If you have file object from request then you can simply get by laravel function.

$extension = $request->file->extension();

dd($extension);

If you have file object from request then you can simply get by laravel function.

$extension = $request->file->getClientOriginalExtension();

dd($extension);

I hope it can help you...

Tags :
Shares