PHP 8.5.0 Beta 1 available for testing

Voting

: min(two, three)?
(Example: nine)

The Note You're Voting On

info at lomalkin dot ru
12 years ago
<?

// Hack for old php versions to use boolval()

if (!function_exists('boolval')) {
function boolval($val) {
return (bool) $val;
}
}
?>

<< Back to user notes page

To Top