1 drupal.inc | drupal_move_uploaded_file($filename, $uri) |
Moves an uploaded file to a new location.
Deprecated
since 1.0.0
See also
Related topics
File
- core/
includes/ drupal.inc, line 1617 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function drupal_move_uploaded_file($filename, $uri) {
watchdog_deprecated_function('drupal', __FUNCTION__);
return backdrop_move_uploaded_file($filename, $uri);
}