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