phpircbot2/commands/stats.prefix.php

10 lines
395 B
PHP
Raw Normal View History

2010-11-21 23:13:54 +01:00
<?php
#BOT_INCLUDE "stats" "prefix" "0"
$total = $this -> eval_sys("find * | grep -i php | xargs cat | wc -l");
$stats = "";
$stats .= "Memory: ".number_format(memory_get_usage(true) / 1024)."KB ";
$stats .= "(Peak: ".number_format(memory_get_peak_usage(true) / 1024)."KB)";
$stats .= " - Code: ".number_format($total[0])." lines";
$this -> call("privmsg", $recv["origin"], $stats);
?>