PHP 8.5.0 Alpha 1 available for testing

Voting

: min(nine, one)?
(Example: nine)

The Note You're Voting On

synnus at gmail dot com
9 years ago
// use system windows for give filesize
// best for php 32bit or php 64bit
// I do not know if it works on other windows, but on Windows 10 works well here

<?php

echo filesize_cmd('c:\\', 'log.txt'); //return 1135

function filesize_cmd($folder, $file) {
return
exec('forfiles /p '.$folder.' /m "'.$file.'" /c "cmd /c echo @fsize"');
}

?>

<< Back to user notes page

To Top