Bool Coercion
Cast passed value into a PHP boolean type.
Input Value | Output Result |
|---|
bool(false)
| bool(false)
|
string("")
| bool(false)
|
string("0")
| bool(false)
|
array([])
| bool(false)
|
null
| bool(false)
|
int(0)
| bool(false)
|
float(0.0)
| bool(false)
|
Other | bool(true)
|
05 November 2025