Skip to content

Instantly share code, notes, and snippets.

@madeingnecca
Last active October 11, 2015 02:38
Show Gist options
  • Save madeingnecca/3790169 to your computer and use it in GitHub Desktop.
Save madeingnecca/3790169 to your computer and use it in GitHub Desktop.
PHP - current directory size (exec)
<?php
header("Content-type: text/plain; charset=utf8");
$pwd = dirname(__FILE__);
print "$pwd\n";
print exec("du -ch " . escapeshellarg($pwd));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment