Merge branch 'develop' of github.com:taylorotwell/laravel into develop

This commit is contained in:
Taylor Otwell
2011-06-26 08:45:14 -05:00

View File

@@ -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;
}
}