wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



_wp_check_alternate_file_names › WordPress Function

Depuis5.8.1
Dépréciéen/a
_wp_check_alternate_file_names ( $filenames, $dir, $files )
Accès:
  • private
Paramètres: (3)
  • (string[]) $filenames Array of file names to check.
    Requis: Oui
  • (string) $dir The directory containing the files.
    Requis: Oui
  • (array) $files An array of existing files in the directory. May be empty.
    Requis: Oui
Retourne:
  • (bool) True if the tested file name could match an existing file, false otherwise.
Défini(e) dans:
Codex:

Helper function to test if each of an array of file names could conflict with existing files.



Source

function _wp_check_alternate_file_names( $filenames, $dir, $files ) {
	foreach ( $filenames as $filename ) {
		if ( file_exists( $dir . $filename ) ) {
			return true;
		}

		if ( ! empty( $files ) && _wp_check_existing_file_names( $filename, $files ) ) {
			return true;
		}
	}

	return false;
}