Du hast noch keinen Account?
Werde Teil unserer PHP Community und registriere Dich jetzt...
<?php $handle = popen("grep 'Sent [0-9]* bytes' messages | awk '{print $7+$10};'", "r"); $total = 0; while (!feof($handle)) { $buffer = fgets($handle, 4096); $total += $buffer; } echo $total; ?>
Kommentar