function file_unmunge_filename
Same name and namespace in other branches
- 7.x drupal-7.x/includes/file.inc \file_unmunge_filename()
Undo the effect of upload_munge_filename().
Parameters
$filename string filename:
Return value
string
Related topics
Archivo
- drupal-6.x/
includes/ file.inc, line 503 - API for handling file uploads and server file management.
Código
function file_unmunge_filename($filename) {
return str_replace('_.', '.', $filename);
}