| Versionen | |
|---|---|
| drupal6 – drupal7 | file_unmunge_filename($filename) |
Undo the effect of upload_munge_filename().
$filename String with the filename to be unmunged.
An unmunged filename string.
includes/
<?php
function file_unmunge_filename($filename) {
return str_replace('_.', '.', $filename);
}
?>
Kommentare
Kommentar hinzufügen