Пример #1
0
 /**
  * Moves an uploaded file to a destination folder
  * 
  * @param string $file The name of the php (temporary) uploaded file
  * @param string $dest The path (including filename) to move the uploaded file to
  * 
  * @return boolean The success of the operation
  */
 public function upload($file, $dest)
 {
     return $this->adapter->upload($file, $dest);
 }