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 = int($multiplier); $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.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined array key 1 in /in/nQBlu on line 8 Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /in/nQBlu on line 11 Fatal error: Uncaught Error: Call to undefined function int() in /in/nQBlu:14 Stack trace: #0 /in/nQBlu(3): get_fraction(3.4) #1 {main} thrown in /in/nQBlu on line 14
Process exited with code 255.
Output for 8.0.0 - 8.0.30
Warning: Undefined array key 1 in /in/nQBlu on line 8 Fatal error: Uncaught Error: Call to undefined function int() in /in/nQBlu:14 Stack trace: #0 /in/nQBlu(3): get_fraction(3.4) #1 {main} thrown in /in/nQBlu on line 14
Process exited with code 255.
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined offset: 1 in /in/nQBlu on line 8 Fatal error: Uncaught Error: Call to undefined function int() in /in/nQBlu:14 Stack trace: #0 /in/nQBlu(3): get_fraction(3.4) #1 {main} thrown in /in/nQBlu on line 14
Process exited with code 255.
Output for 7.3.32 - 7.3.33
Fatal error: Uncaught Error: Call to undefined function int() in /in/nQBlu:14 Stack trace: #0 /in/nQBlu(3): get_fraction(3.4) #1 {main} thrown in /in/nQBlu on line 14
Process exited with code 255.
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Notice: Undefined offset: 1 in /in/nQBlu on line 8 Fatal error: Call to undefined function int() in /in/nQBlu on line 14
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Notice: Undefined offset: 1 in /in/nQBlu on line 8 Fatal error: Call to undefined function int() in /in/nQBlu on line 14
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Notice: Undefined offset: 1 in /in/nQBlu on line 8 Fatal error: Call to undefined function: int() in /in/nQBlu on line 14
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Notice: Undefined offset: 1 in /in/nQBlu on line 8 Fatal error: Call to undefined function: int() in /in/nQBlu on line 14
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Notice: Undefined offset: 1 in /in/nQBlu on line 8 Fatal error: Call to undefined function: int() in /in/nQBlu on line 14

preferences:
262.68 ms | 401 KiB | 459 Q