How To Get File Size From URL in Laravel 9 Tutorial

Reading Time: 3 minutes
1,585 Views

Inside this article we will see see the concept to get file size from url in laravel 9 tutorial. Article contains classified information about finding file size via URL.

If you are looking for an article which gives you the understanding to find file size from URL, file is of any type then you are at right place to learn.

Laravel provides few options to get file size from path. In this article we will use the concept of getting file size using Storage class and File Facade classes. We need to assume that we have few files inside /public folder or /storage/app/public folder.

Learn More –

Let’s get started.

Laravel Installation

Open terminal and run this command to create a laravel project.

composer create-project laravel/laravel myblog

It will create a project folder with name myblog inside your local system.

To start the development server of laravel –

php artisan serve

URL: http://127.0.0.1:8000

Assuming laravel already installed inside your system.

File Inside Folders

Let’s say we have an image file inside these folders:

  • /storage/app/public/images
  • /public/images

We will see the concept of finding size using Storage class and File class in all these above cases.

File Size: Using Storage Class

Here, we will use Storage facade class and it’s size method.

Assume we have a file named as 1.png inside /storage/app/public/images folder.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;

class SampleController extends Controller
{
    public function index()
    {
        $fileSize = Storage::size('public/images/1.png');

        // File size in bytes
        dd($fileSize);
    }
}

Output

File size will be returned into bytes.

File Size: Using File Class

Here, we will use File facade class and it’s size method.

Assume we have a file named as 1.png inside /public/images folder.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Illuminate\Support\Facades\File;

class SampleController extends Controller
{
    public function index()
    {
        $fileSize = File::size(public_path('images/1.png'));

        // File size in bytes
        dd($fileSize);
    }
}

Output

File size will be returned into bytes.

We hope this article helped you to learn How To Get File Size From URL in Laravel 9 Tutorial in a very detailed way.

Online Web Tutor invites you to try Skillshike! Learn CakePHP, Laravel, CodeIgniter, Node Js, MySQL, Authentication, RESTful Web Services, etc into a depth level. Master the Coding Skills to Become an Expert in PHP Web Development. So, Search your favourite course and enroll now.

If you liked this article, then please subscribe to our YouTube Channel for PHP & it’s framework, WordPress, Node Js video tutorials. You can also find us on Twitter and Facebook.

Sanjay KumarHello friends, I am Sanjay Kumar a Web Developer by profession. Additionally I'm also a Blogger, Youtuber by Passion. I founded Online Web Tutor and Skillshike platforms. By using these platforms I am sharing the valuable knowledge of Programming, Tips and Tricks, Programming Standards and more what I have with you all. Read more