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



wp_unslash › WordPress Function

Seit3.6.0
Veraltetn/v
wp_unslash ( $value )
Parameter:
  • (string|array) $value String or array of data to unslash.
    Erforderlich: Ja
Gibt zurück:
  • (string|array) Unslashed `$value`, in the same type as supplied.
Definiert in:
Codex:

Removes slashes from a string or recursively removes slashes from strings within an array.

This should be used to remove slashes from data passed to core API that expects data to be unslashed.


Ähnliche Funktionen: wp_slash, wp_hash, wp_untrash_post, wp_styles, wp_rss

Quellcode

function wp_unslash( $value ) {
	return stripslashes_deep( $value );
}