wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_handle_upload › WordPress Function

Seit2.0.0
Veraltetn/v
wp_handle_upload ( $file, $overrides = false, $time = null )
Parameter: (3)
  • (array) $file Reference to a single element of `$_FILES`. Call the function once for each uploaded file. See _wp_handle_upload() for accepted values.
    Erforderlich: Ja
  • (array|false) $overrides Optional. An associative array of names => values to override default variables. Default false. See _wp_handle_upload() for accepted values.
    Erforderlich: Nein
    Standard: false
  • (string) $time Optional. Time formatted in 'yyyy/mm'. Default null.
    Erforderlich: Nein
    Standard: null
Siehe:
Gibt zurück:
  • (array) See _wp_handle_upload() for return value.
Definiert in:
Codex:

Wrapper for _wp_handle_upload().

Passes the {@see 'wp_handle_upload'} action.


Quellcode

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