verbose/lib/booltostr.php
2024-09-28 06:06:22 +02:00

8 lines
118 B
PHP

<?php
function booltostr($bool,$true='true',$false='false') {
if ($bool)
return $true;
else
return $false;
}
?>