Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
$test = ltrim('01234', '0');
$test = bcmul('01234', '1');
Quelle: https://de2.php.net/manual/de/function.ltrim.php#68677To remove leading/trailing zeroes (example: "0123.4560"), doing a += 0 is easier than trim tricks.