file_unmunge_filename

file_unmunge_filename($filename)

Undoes the effect of file_munge_filename().

Parameters

$filename: String with the filename to be unmunged.

Return value

An unmunged filename string.

Related topics

File interface
Common file handling functions.

File

core/includes/file.inc, line 740
API for handling file uploads and server file management.

Code

1
2
3
function file_unmunge_filename($filename) {
  return str_replace('_.', '.', $filename);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.