Files
GseTDDUebungKCLR/database/php/tests/parseFile/math.php
Riley Schneider b732d8d4b5 Initial Commit
2025-12-03 16:38:10 +01:00

6 lines
85 B
PHP

<?php
$nb = bcsub(1.234, 5, 4);
if (preg_match('/^-/', $nb)) {
echo 'minus';
}
?>