Skip to content

Instantly share code, notes, and snippets.

@psynaptic
Created February 28, 2013 14:38
Show Gist options
  • Save psynaptic/5057177 to your computer and use it in GitHub Desktop.
Save psynaptic/5057177 to your computer and use it in GitHub Desktop.
switch (PHP_OS) {
case 'Darwin':
$size = shell_exec('stat -f %z ' . escapeshellarg($filepath));
break;
case 'Linux':
$size = shell_exec('stat -c%s ' . escapeshellarg($filepath));
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment