function FileSystemInterface::moveUploadedFile
Same name in other branches
- 9 core/lib/Drupal/Core/File/FileSystemInterface.php \Drupal\Core\File\FileSystemInterface::moveUploadedFile()
- 8.9.x core/lib/Drupal/Core/File/FileSystemInterface.php \Drupal\Core\File\FileSystemInterface::moveUploadedFile()
- 11.x core/lib/Drupal/Core/File/FileSystemInterface.php \Drupal\Core\File\FileSystemInterface::moveUploadedFile()
Moves an uploaded file to a new location.
PHP's move_uploaded_file() does not properly support streams if open_basedir is enabled, so this function fills that gap.
Compatibility: normal paths and stream wrappers.
Parameters
string $filename: The filename of the uploaded file.
string $uri: A string containing the destination URI of the file.
Return value
bool TRUE on success, or FALSE on failure.
See also
https://www.drupal.org/node/515192
Related topics
File
-
core/
lib/ Drupal/ Core/ File/ FileSystemInterface.php, line 84
Class
- FileSystemInterface
- Provides an interface for helpers that operate on files and stream wrappers.
Namespace
Drupal\Core\FileCode
public function moveUploadedFile($filename, $uri);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.