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



wp_slash › WordPress Function

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

Adds slashes to a string or recursively adds slashes to strings within an array.

This should be used when preparing data for core API that expects slashed data. This should not be used to escape data going directly into an SQL query.


Ähnliche Funktionen: wp_unslash, wp_hash, wp_styles, wp_rss, deslash

Quellcode

function wp_slash( $value ) {
	if ( is_array( $value ) ) {
		$value = array_map( 'wp_slash', $value );
	}

	if ( is_string( $value ) ) {
		return addslashes( $value );
	}

	return $value;
}