function file_unmunge_filename
Same name in other branches
- 7.x includes/file.inc \file_unmunge_filename()
- 9 core/includes/file.inc \file_unmunge_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
1 call to file_unmunge_filename()
- NameMungingTest::testUnMunge in core/
tests/ Drupal/ KernelTests/ Core/ File/ NameMungingTest.php - Ensure that unmunge gets your name back.
File
-
core/
includes/ file.inc, line 731
Code
function file_unmunge_filename($filename) {
return str_replace('_.', '.', $filename);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.