3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a='5465574541345268975564654'; $b='2514523656557987'; echo "Normal sum : ".($a +$b); echo "\n"; $main_loop = strlen($a); if(strlen($a) < strlen($b)){ $main_loop = strlen($b); $a = str_pad($a,strlen($b),"0",STR_PAD_LEFT); } else { $b = str_pad($b,strlen($a),"0",STR_PAD_LEFT); } $carry = 0; $str = ""; $new_sum = ""; for($i = $main_loop-1;$i>=0;$i--) { $char_a = isset($a[$i])?$a[$i]:0; $char_b = isset($b[$i])?$b[$i]:0; $sum_char =(string)($char_a + $char_b + $carry); $carry = 0; $str = (string)$sum_char[0]; if(strlen($sum_char) > 1) { $carry = $sum_char[0]; $str = $sum_char[1]; } $new_sum .= $str; } $new_sum = strrev($new_sum); echo $new_sum;
Output for 7.0.0 - 7.0.25, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.28, 8.4.1 - 8.4.14, 8.5.0 - 8.5.1
Normal sum : 5.4655745438598E+24 5465574543859792632122641
Output for 8.4.15
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
Process exited with code 1.

preferences:
189.36 ms | 407 KiB | 5 Q