BASE . LOG,
'log_file_id' => $LOG_FILE_ID,
'log_per_date' => true,
]);
$math_class = 'CoreLibs\Convert\Math';
// define a list of from to color sets for conversion test
$PAGE_NAME = 'TEST CLASS: MATH';
print "";
print "
" . $PAGE_NAME . "";
print "";
print '';
print '' . $PAGE_NAME . '
';
print "S-FCEIL: " . $math_class::fceil(5.1234567890, 5) . "
";
print "S-FLOORP: " . $math_class::floorp(5123456, -3) . "
";
print "S-FLOORP: " . $math_class::floorp(5123456, -10) . "
";
print "S-INITNUMERIC: " . $math_class::initNumeric(123) . "
";
print "S-INITNUMERIC: " . $math_class::initNumeric(123.456) . "
";
print "S-INITNUMERIC: " . $math_class::initNumeric('123') . "
";
print "S-INITNUMERIC: " . $math_class::initNumeric('123.456') . "
";
print "";
// __END__