Linux::_uptime PHP 메소드

_uptime() 보호된 메소드

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