Skip to main content

9 docs tagged with "Logical"

View all tags

and

The AND function returns true if all of the provided arguments are logically true, and false if any of the provided arguments are logically false.

case

Evaluates multiple conditions and returns the value corresponding to the first condition that is true.

if

Returns one value if a logical expression is TRUE and another if it is FALSE.

in_array

Checks if a value exists in an array.

is_blank

Checks if a value is blank (null, empty string, or whitespace).

is_empty

Checks if a value is empty (null or empty string).

is_in_range

Checks if a value is within a specified range.

not

Returns the logical opposite of a boolean value.

or

The OR function returns true if any of the provided arguments are logically true, and false if all of the provided arguments are logically false.