bool_from_yn( string $yn ): bool

In this article

Determines whether input is yes or no.

Description

Must be ‘y’ to be true.

Parameters

$ynstringrequired
Character string containing either 'y' (yes) or 'n' (no).

Return

bool True if 'y', false on anything else.

Source

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

Changelog

VersionDescription
1.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.