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



wp_clone › WordPress Function

Seit2.7.0
Veraltet3.2.0
wp_clone ( $input_object )
Parameter:
  • (object) $input_object The object to clone.
    Erforderlich: Ja
Gibt zurück:
  • (object) The cloned object.
Definiert in:
Codex:

Clones an object.



Quellcode

function wp_clone( $input_object ) {
	// Use parens for clone to accommodate PHP 4. See #17880.
	return clone( $input_object );
}