IP-Symcon - Wie kann ich... 2.0

<?
$NegativeZahl = -850;

if ($NegativeZahl < 0) {
	$PositiveZahl = $NegativeZahl * -1;
}

echo "Negative Zahl = '$NegativeZahl' // Positive Zahl = '$PositiveZahl'";
?>