“Obtener el tamaño del archivo en PHP” Código de respuesta

PHP Obtenga el tamaño del archivo

$fileSizeInBytes=filesize("/path/to/myfile.txt"); 
Grepper

archivos en php

$file = '/path/to/your/file';
$filesize = filesize($file); // bytes
$filesize = round($filesize / 1024 / 1024, 1); // megabytes with 1 digit
 
echo "The size of your file is $filesize MB.";
Akki batra

archivos en php

$file = '/path/to/your/file';
$filesize = filesize($file);
 
echo "The size of your file is $filesize bytes.";
Akki batra

Obtener el tamaño del archivo en PHP

$img = get_headers("file URL", 1);
echo $img["Content-Length"];
Thoughtful Tapir

Respuestas similares a “Obtener el tamaño del archivo en PHP”

Preguntas similares a “Obtener el tamaño del archivo en PHP”

Más respuestas relacionadas con “Obtener el tamaño del archivo en PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código