Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

filesize in 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.";
Source by wpguru.co.uk #
 
PREVIOUS NEXT
Tagged: #filesize #php
ADD COMMENT
Topic
Name
1+8 =