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



bool_from_yn › WordPress Function

Seit1.0.0
Veraltetn/v
bool_from_yn ( $yn )
Parameter:
  • (string) $yn Character string containing either 'y' (yes) or 'n' (no).
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if 'y', false on anything else.
Definiert in:
Codex:

Determines whether input is yes or no.

Must be 'y' to be true.


Ähnliche Funktionen: get_blog_id_from_url

Quellcode

function bool_from_yn( $yn ) {
	return ( 'y' === strtolower( $yn ) );
}