background image

        return '文件系统类。';   
    }   
       
    /**  
     *   
     * 

  

获取成员属性

     *   
     * @return mixed  
     */  
    public function __get($name)   
    {   
        return $this->$name;   
    }   
       
    /**  
     *   
     * 

  

设置成员属性

     *   
     * @return Files  
     */  
    public function __set($name, $value)   
    {   
        $this->$name = $value;   
        return $this;   
    }   
       
    /**  
     *   
     * 

  

获取当前服务器的操作系统

     *   
     * @return string  
     */  
    public function getSystem()   
    {   
        return $this->_system;   
    }   
       
    /**  
     *   
     * 

  

检测当前系统的所有磁盘

     *   
     * @return array  
     */  
    public function getDisks()