wp_handle_upload

函数


wp_handle_upload ( $file, $overrides = false, $time = null )
参数
  • (array)
    $file
    Reference to a single element of `$_FILES`. Call the function once for each uploaded file. See _wp_handle_upload() for accepted values.
    Required:
  • (array|false)
    $overrides
    Optional. An associative array of names => values to override default variables. Default false. See _wp_handle_upload() for accepted values.
    Required:
    Default: false
  • (string)
    $time
    Optional. Time formatted in ‘yyyy/mm’. Default null.
    Required:
    Default: null
返回值
  • (array) See _wp_handle_upload() for return value.
相关
  • _wp_handle_upload()
定义位置
  • wp-admin/includes/file.php
    , line 1065
引入
2.0.0
弃用

_wp_handle_upload()的封装器。

传递{@see ‘wp_handle_upload’}动作。

function wp_handle_upload( &$file, $overrides = false, $time = null ) {
	/*
	 *  $_POST['action'] must be set and its value must equal $overrides['action']
	 *  or this:
	 */
	$action = 'wp_handle_upload';
	if ( isset( $overrides['action'] ) ) {
		$action = $overrides['action'];
	}

	return _wp_handle_upload( $file, $overrides, $time, $action );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。