Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: sanitize_file_name_chars

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
595  *
596  * @since 2.1.0
597  *
598  * @param string $filename The filename to be sanitized
599  * @return string The sanitized filename
600  */
601 function sanitize_file_name( $filename ) {
602      $filename_raw = $filename;
603      $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}");
604      $special_chars = apply_filters('sanitize_file_name_chars', $special_chars, $filename_raw);
605      $filename = str_replace($special_chars, '', $filename);
606      $filename = preg_replace('/[\s-]+/', '-', $filename);
607      $filename = trim($filename, '.-_');
608      return apply_filters('sanitize_file_name', $filename, $filename_raw);
609 }
610
611 /**
612  * Sanitize username stripping out unsafe characters.
613  *