Boolean
Less than 1 minute
Boolean
Boolean utility class.
This class provides a number of helper functions for working with boolean values.
Methods
from
Normalize boolean values.
public from(mixed $value): bool
This helper function will take a string representation of a boolean such as 't', 'true', 'yes', 'ok' and return a boolean type value.
Parameters
Parameter | Type | Description |
---|---|---|
$value | mixed | The string representation of the boolean |
toString
Retrieve string value of boolean.
public toString(mixed $value): string
Normalise boolean string to 'true' or 'false' based on various boolean representations
Parameters
Parameter | Type | Description |
---|---|---|
$value | mixed | The string representation of the boolean |
is
Test whether a value is a boolean.
public is(mixed $value): void
Checks for various representations of a boolean, including strings of 'true/false' and 'yes/no'.
Parameters
Parameter | Type | Description |
---|---|---|
$value | mixed |
yn
The Yes/No function.
public yn(mixed $value, string $trueValue = 'Yes', string $falseValue = 'No'): string
Simply returns Yes or No based on a boolean value.
Parameters
Parameter | Type | Description |
---|---|---|
$value | mixed | |
$trueValue | string | |
$falseValue | string |
Generated by Hazaar API Doc Generator