PHPverse 2025

Voting

: max(zero, one)?
(Example: nine)

The Note You're Voting On

uasenior at gmail dot com
5 years ago
<?

// Some way to print boolean value as string

$b = true;

echo ['false', 'true'][$b];

?>

<< Back to user notes page

To Top