wp_unique_filename


wp_unique_filename ( $dir, $filename, $unique_filename_callback = null )

Parameters:
  • (string) dir Directory.
  • (string) filename File name.
  • (callable) unique_filename_callback Callback. Default null.
Returns:
  • (string) New filename, if given wasn't unique.
Defined at:

Description

Gets a filename that is sanitized and unique for the given directory.If the filename is not unique, then a number will be added to the filename before the extension, and will continue adding numbers until the filename is unique. The callback function allows the caller to use their own method to create unique file names. If defined, the callback should take three arguments: - directory, base filename, and extension - and return a unique filename.

Related Functions

wp_unique_id, wp_unique_prefixed_id, sanitize_file_name, wp_unique_term_slug, wp_enqueue_media

Top Google Results

User discussions

wpseek mobile