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



backslashit › WordPress Function

Seit0.71
Veraltetn/v
backslashit ( $value )
Parameter:
  • (string) $value Value to which backslashes will be added.
    Erforderlich: Ja
Gibt zurück:
  • (string) String with backslashes inserted.
Definiert in:
Codex:

Adds backslashes before letters and before a number at the start of a string.



Quellcode

function backslashit( $value ) {
	if ( isset( $value[0] ) && $value[0] >= '0' && $value[0] <= '9' ) {
		$value = '\\\\' . $value;
	}
	return addcslashes( $value, 'A..Za..z' );
}