Answers for "get size or file php file contents"

PHP
2

php get size of file

$fileSizeInBytes=filesize("/path/to/myfile.txt");
Posted by: Guest on October-22-2019
0

get file size in php

$img = get_headers("file URL", 1);
echo $img["Content-Length"];
Posted by: Guest on May-13-2021

Browse Popular Code Answers by Language