_wp_check_alternate_file_names

函数
_wp_check_alternate_file_names ( $filenames, $dir, $files )
Access
Private
参数
  • (string[]) $filenames Array of file names to check.
    Required:
  • (string) $dir The directory containing the files.
    Required:
  • (array) $files An array of existing files in the directory. May be empty.
    Required:
返回值
  • (bool) True if the tested file name could match an existing file, false otherwise.
定义位置
相关方法
_wp_check_existing_file_nameswp_check_filetype_get_template_edit_filenamewp_delete_filesanitize_file_name
引入
5.8.1
弃用
-

_wp_check_alternate_file_names: 这个函数用来检查一个特定文件是否存在备用文件名。它接收一个文件路径和一个备用文件名的列表,并返回第一个存在的备用文件的路径。

帮助函数,测试文件名数组中的每一个是否与现有文件冲突。

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;
}

常见问题

FAQs
查看更多 >