phpircbot2/commands/uptime.prefix.php

10 lines
241 B
PHP

<?php
#BOT_INCLUDE "uptime" "prefix" "2"
$cmd = "uptime";
$p = popen($cmd, "r");
while($data = fgets($p, 8192)){
$result[] = $data;
}
pclose($p);
foreach($result as $line) $this -> call("privmsg", $recv["origin"], trim($line));
?>