Hi,
ich steh grad auf dem Schlauch.
Ich hab folgendes PHP-Code:
Code:
if ($recognize_first_point) {
if (!is_numeric($this->get_char()) && $this->get_char() != '.') {
break;
}
}
else if (!is_numeric($this->get_char())) {
break;
}
Kann ich diesen hiermit vereinfachen:
Code:
if (!is_numeric($this->get_char()) && ($recognize_first_point && $this->get_char() != '.')) {
break;
}