verbose/lib/booltostr.php

9 lines
120 B
PHP
Raw Normal View History

2023-11-20 12:42:57 +01:00
<?php
function booltostr($bool,$true='true',$false='false') {
if ($bool)
return($true);
else
return($false);
}
?>