Linux::_uptime PHP Method

_uptime() protected method

UpTime time the system is running
protected _uptime ( ) : void
return void
    protected function _uptime()
    {
        CommonFunctions::rfts('/proc/uptime', $buf, 1);
        $ar_buf = preg_split('/ /', $buf);
        $this->sys->setUptime(trim($ar_buf[0]));
    }