Changeset 11178 for trunk/wp-includes/formatting.php
- Timestamp:
- 05/04/2009 08:20:48 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r11126 r11178 567 567 568 568 /** 569 * Filters certain characters from the file name. 570 * 571 * Turns all strings to lowercase removing most characters except alphanumeric 572 * with spaces, dashes and periods. All spaces and underscores are converted to 573 * dashes. Multiple dashes are converted to a single dash. Finally, if the file 574 * name ends with a dash, it is removed. 569 * Sanitizes a filename replacing whitespace with dashes 570 * 571 * Removes special characters that are illegal in filenames on certain 572 * operating systems and special characters requiring special escaping 573 * to manipulate at the command line. Replaces spaces and consecutive 574 * dashes with a single dash. Trim period, dash and underscore from beginning 575 * and end of filename. 575 576 * 576 577 * @since 2.1.0 577 578 * 578 * @param string $name The file name 579 * @return string Sanitized file name 580 */ 581 function sanitize_file_name( $name ) { // Like sanitize_title, but with periods 582 $name = strtolower( $name ); 583 $name = preg_replace('/&.+?;/', '', $name); // kill entities 584 $name = str_replace( '_', '-', $name ); 585 $name = preg_replace('/[^a-z0-9\s-.]/', '', $name); 586 $name = preg_replace('/\s+/', '-', $name); 587 $name = preg_replace('|-+|', '-', $name); 588 $name = trim($name, '-'); 589 return $name; 579 * @param string $filename The filename to be sanitized 580 * @return string The sanitized filename 581 */ 582 function sanitize_file_name( $filename ) { 583 $filename_raw = $filename; 584 $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}"); 585 $special_chars = apply_filters('sanitize_file_name_chars', $special_chars, $filename_raw); 586 $filename = str_replace($special_chars, '', $filename); 587 $filename = preg_replace('/[\s-]+/', '-', $filename); 588 $filename = trim($filename, '.-_'); 589 return apply_filters('sanitize_file_name', $filename, $filename_raw); 590 590 } 591 591
Note: See TracChangeset
for help on using the changeset viewer.