_wp_check_existing_file_names

函数
_wp_check_existing_file_names ( $filename, $files )
Access
Private
参数
  • (string) $filename The file name to check.
    Required:
  • (array) $files An array of existing files in the directory.
    Required:
返回值
  • (bool) True if the tested file name could match an existing file, false otherwise.
定义位置
相关方法
_wp_check_alternate_file_nameswp_check_filetypewp_check_for_changed_dateswp_using_themeswp_unique_filename
引入
5.3.1
弃用
-

WordPress中的_wp_check_existing_file_names函数是用来检查WordPress媒体库中是否已经存在一个与被上传的文件同名的文件。它接受两个参数,文件名和父文章的ID,并返回文件名,如果有必要的话,还附加一个唯一的后缀。

帮助函数,检查文件名是否可以与现有的图像子尺寸文件名匹配。

function _wp_check_existing_file_names( $filename, $files ) {
	$fname = pathinfo( $filename, PATHINFO_FILENAME );
	$ext   = pathinfo( $filename, PATHINFO_EXTENSION );

	// Edge case, file names like `.ext`.
	if ( empty( $fname ) ) {
		return false;
	}

	if ( $ext ) {
		$ext = ".$ext";
	}

	$regex = '/^' . preg_quote( $fname ) . '-(?:d+xd+|scaled|rotated)' . preg_quote( $ext ) . '$/i';

	foreach ( $files as $file ) {
		if ( preg_match( $regex, $file ) ) {
			return true;
		}
	}

	return false;
}

常见问题

FAQs
查看更多 >