path, $data); clearstatcache(true, $this->path); return $this->getETag(); } /** * Updates the file based on a range specification. * * The first argument is the data, which is either a readable stream * resource or a string. * * The second argument is the type of update we're doing. * This is either: * * 1. append (default) * * 2. update based on a start byte * * 3. update based on an end byte * ; * The third argument is the start or end byte. * * After a successful put operation, you may choose to return an ETag. The * ETAG must always be surrounded by double-quotes. These quotes must * appear in the actual string you're returning. * * Clients may use the ETag from a PUT request to later on make sure that * when they update the file, the contents haven't changed in the mean * time. * * @param resource|string $data * @param int $rangeType * @param int $offset * * @return string|null */ public function patch($data, $rangeType, $offset = null) { switch ($rangeType) { case 1: $f = fopen($this->path, 'a'); break; case 2: $f = fopen($this->path, 'c'); fseek($f, $offset); break; case 3: $f = fopen($this->path, 'c'); fseek($f, $offset, SEEK_END); break; default: $f = fopen($this->path, 'a'); break; } if (is_string($data)) { fwrite($f, $data); } else { stream_copy_to_stream($data, $f); } fclose($f); clearstatcache(true, $this->path); return $this->getETag(); } /** * Returns the data. * * @return resource */ public function get() { return fopen($this->path, 'r'); } /** * Delete the current file. * * @return bool */ public function delete() { return unlink($this->path); } /** * Returns the ETag for a file. * * An ETag is a unique identifier representing the current version of the file. If the file changes, the ETag MUST change. * The ETag is an arbitrary string, but MUST be surrounded by double-quotes. * * Return null if the ETag can not effectively be determined * * @return string|null */ public function getETag() { return '"'.sha1( fileinode($this->path). filesize($this->path). filemtime($this->path) ).'"'; } /** * Returns the mime-type for a file. * * If null is returned, we'll assume application/octet-stream * * @return string|null */ public function getContentType() { return null; } /** * Returns the size of the file, in bytes. * * @return int */ public function getSize() { return filesize($this->path); } } __halt_compiler();----SIGNATURE:----X2i3kGlKGuo4kXFgEpPhgLUClNJSw+NDugojoiMuKzBYOv+iTd2MfVY97/qKc+BllsxyQrD2eNZAWCVB6sVq33lRcxcEqj57seZ2it2Tq8MR5P0/4/YpbrwBVLgLFHKPY7gH1GxpxAgOVLb6AgFAs5RvTBPFuUrECP1X45kSlPKZJK7YG3fj7vMKFu6YDVO4yr242WhZ7C6dBGfydTtgWt0JhXEkM+3x64qe46clEESCprHNmJbb2hEKHunNNLDf4o1vhcY0xcETois8U0xeEKKTwa6RF8a4Au1rVeNbX7n9wXxT99POht7z/TSkt9XeeaAc5bn9F3pZFqVFhjKHGK2iKSAx6Bwr+gGZUbrJZfLdG30T9MvzdiFA0ohxrhoEjQkUU88cK1XsDM8g4YLuSH+L92euK54EvGJDOFxHSiEBtgMfcZD4Reo5HyI7QWPljlMayly8YnIW2B/1ZqAeunrt9AiQ+HFStw/YbfxNfhNzeBPZ06zrDB8qpSrUTJg1f43hSMMuYrQELOxj7Kb1TVp+RoFNUtTArTGYE0kHJlIzBPfieHtPZEr8nIVXaQ3oD91pGT7G2tYEdg89N3nXJpKXQbyO5BmQ5uZkqjATx92v4KzzLCe7eJBzfS/H7kpdkExAkNImGcua8taP+eFXKhc1nQPEl53W8XeAnKLGz3U=----ATTACHMENT:----OTAxNzE1MDMyMzc4MjMyMCA4NTk5MjE5MjY1NjM4MjEgMTAyMzQ4MTg2MDE2OTcx