Gaufrette\Adapter\Ftp::read PHP Method

read() public method

public read ( $key )
    public function read($key)
    {
        $this->ensureDirectoryExists($this->directory, $this->create);
        $temp = fopen('php://temp', 'r+');
        if (!ftp_fget($this->getConnection(), $temp, $this->computePath($key), $this->mode)) {
            return false;
        }
        rewind($temp);
        $contents = stream_get_contents($temp);
        fclose($temp);
        return $contents;
    }