3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo get_fraction(3.4); function get_fraction($decimal){ $decimal_array = explode( '.', $decimal); $whole_number = $decimal_array[0]; $decimal_number = $decimal_array[1]; $multiplier = "1"; for ($i = 0; $i < strlen($decimal_number); $i++) { $multiplier .= '0'; } $multiplier = $multiplier + 0; $decimal_int = $multiplier * $decimal_number; for ($i = 2; $i < $decimal_int; $i++) { if( $decimal_int % $i == 0 && $multiplier % i == 0){ $decimal_int = $decimal_int / $i; $multiplier = $multiplier / $i; } // code... } if( $decimal_int){ if( $whole_number){ return $whole_number . ' ' . $decimal_int . '/' . $multiplier; }else{ return $decimal_int . '/' . $multiplier; } }else{ return $whole_number; } }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Fatal error: Uncaught Error: Undefined constant "i" in /in/tFUME:18 Stack trace: #0 /in/tFUME(3): get_fraction(3.4) #1 {main} thrown in /in/tFUME on line 18
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Fatal error: Uncaught Error: Undefined constant "i" in /in/tFUME:18 Stack trace: #0 /in/tFUME(3): get_fraction(3.4) #1 {main} thrown in /in/tFUME on line 18
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/tFUME on line 18 Warning: A non-numeric value encountered in /in/tFUME on line 18 Fatal error: Uncaught DivisionByZeroError: Modulo by zero in /in/tFUME:18 Stack trace: #0 /in/tFUME(3): get_fraction(3.4) #1 {main} thrown in /in/tFUME on line 18
Process exited with code 255.
Output for 7.1.0 - 7.1.25
Notice: Use of undefined constant i - assumed 'i' in /in/tFUME on line 18 Warning: A non-numeric value encountered in /in/tFUME on line 18 Fatal error: Uncaught DivisionByZeroError: Modulo by zero in /in/tFUME:18 Stack trace: #0 /in/tFUME(3): get_fraction(3.4) #1 {main} thrown in /in/tFUME on line 18
Process exited with code 255.
Output for 7.0.0 - 7.0.20
Notice: Use of undefined constant i - assumed 'i' in /in/tFUME on line 18 Fatal error: Uncaught DivisionByZeroError: Modulo by zero in /in/tFUME:18 Stack trace: #0 /in/tFUME(3): get_fraction(3.4) #1 {main} thrown in /in/tFUME on line 18
Process exited with code 255.
Output for 4.4.5 - 4.4.9, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28
Notice: Use of undefined constant i - assumed 'i' in /in/tFUME on line 18 Warning: Division by zero in /in/tFUME on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/tFUME on line 18 Warning: Division by zero in /in/tFUME on line 18 3 5/1.25
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.4, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Notice: Use of undefined constant i - assumed 'i' in /in/tFUME on line 18 Notice: Use of undefined constant i - assumed 'i' in /in/tFUME on line 18 3 5/1.25

preferences:
263.82 ms | 402 KiB | 328 Q