Hello,
I’m currently creating a website where users can upload their images and create a photo gallery.
I’m storing the images outside the public directory and I’m using “echo file_get_contents” to display these images.
My question is: will fetching the images through the function file_get_contents be significantly slower than
displaying the images when they are in the public folder using normal “img src” method?