You are here

public function FileSystem::moveUploadedFile in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/File/FileSystem.php \Drupal\Core\File\FileSystem::moveUploadedFile()
  2. 9 core/lib/Drupal/Core/File/FileSystem.php \Drupal\Core\File\FileSystem::moveUploadedFile()

File

core/lib/Drupal/Core/File/FileSystem.php, line 75

Class

FileSystem
Provides helpers to operate on files and stream wrappers.

Namespace

Drupal\Core\File

Code

public function moveUploadedFile($filename, $uri) {
  $result = @move_uploaded_file($filename, $uri);

  // PHP's move_uploaded_file() does not properly support streams if
  // open_basedir is enabled so if the move failed, try finding a real path
  // and retry the move operation.
  if (!$result) {
    if ($realpath = $this
      ->realpath($uri)) {
      $result = move_uploaded_file($filename, $realpath);
    }
    else {
      $result = move_uploaded_file($filename, $uri);
    }
  }
  return $result;
}