Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
$command = "dir /-c " . escapeshellarg($file);
$cmd = exec($command, $out, $err);
if($err != 0)
{
die("Getting file info using dir command failed with error code $err. Return value was $cmd; Executed command was $command.");
}
function mygetSize($file)
{
// Replace / by \
$file = str_replace('/', PATH_SEPARATOR, $file);
$exists = file_exists($file);
....
function mygetSize($file)
{ $ersetzen =array('/' =>"\\");
$file = strtr( $file , $ersetzen );
$exists = file_exists($file);
if(!$exists)
{
die("File $file not found");
}
$fileName = basename($file);
$command = "dir /-c " . escapeshellarg($file);
$cmd = exec($command, $out, $err);
if($err != 0)
{
die("Getting file info using dir command failed with error code $err. Return value was $cmd; Executed command was $command.");
}
// Debugging
//var_dump($out);
$pattern = "/(.*?)$fileName\$/";
$size = 0;
foreach($out as $line)
{
if(preg_match($pattern, $line, $matches))
{
$match = trim($matches[1]);
$parts = explode(' ',$match);
// Debugging
//var_dump($parts);
$size = $parts[count($parts)-1];
}
}
return $size * .0009765625 * .0009765625;
}
ist quasi das gleiche als wenn ich / 1024/ 1024 schreibe