Convert a String to an Integer with PHP
How can i convert a String to an Integer without losing the zeros and preventing an overflow. <?php $iban = "DE85370100500123456403"; $d = 13; $e = 14; $pruefz = substr($iban, 2, 2); $blz = substr($iban, 4, 8); $kto = substr($iban,…