Browse Source

Created File::upload()

Michael Hasselbring 13 years ago
parent
commit
6410e83377
1 changed files with 11 additions and 0 deletions
  1. 11 0
      system/file.php

+ 11 - 0
system/file.php

@@ -186,4 +186,15 @@ class File {
 		return $response;
 	}
 
+	/**
+	 * Move uploaded file, Use $_FILES['file'] for $file
+	 *
+	 * @param  array  $file
+	 * @param  string $path
+	 * @return bool
+	 */
+	public static function upload($file, $path)
+	{
+		return ( ! move_uploaded_file($file['tmp_name'], $path)) ? false : true;
+	}
 }