3v4l.org

run code in 300+ PHP versions simultaneously
<?php setlocale(LC_MONETARY, 'en_US'); $deal = array( array( 'amt' => 1350, 'rate' => .75, 'lod' => 47 ), array( 'amt' => 990, 'rate' => .75, 'lod' => 27 ), array( 'amt' => 4180, 'rate' => .75, 'lod' => 65 ), array( 'amt' => 2370, 'rate' => .75, 'lod' => 26 ) ); bcscale(4); foreach ($deal as $value) { $fee = bcmul(bcmul(bcdiv($value['amt'], 1000), $value['rate']), $value['lod']); var_dump($fee); echo 'money_format: ' . money_format('%.2n', $fee) . \PHP_EOL; echo 'number_format: ' . number_format($fee, 2); echo \PHP_EOL . \PHP_EOL; }
Output for 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.4, 8.3.6 - 8.3.7
string(7) "47.5875" Fatal error: Uncaught Error: Call to undefined function money_format() in /in/JEZds:30 Stack trace: #0 {main} thrown in /in/JEZds on line 30
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 string(7) "47.5875" Fatal error: Uncaught Error: Call to undefined function money_format() in /in/JEZds:30 Stack trace: #0 {main} thrown in /in/JEZds on line 30
Process exited with code 255.
Output for 7.3.32 - 7.3.33, 7.4.33, 8.0.13
Fatal error: Uncaught Error: Call to undefined function bcscale() in /in/JEZds:26 Stack trace: #0 {main} thrown in /in/JEZds on line 26
Process exited with code 255.
Output for 7.4.4 - 7.4.32
string(7) "47.5875" Deprecated: Function money_format() is deprecated in /in/JEZds on line 30 money_format: $47.59 number_format: 47.59 string(7) "20.0475" Deprecated: Function money_format() is deprecated in /in/JEZds on line 30 money_format: $20.05 number_format: 20.05 string(8) "203.7750" Deprecated: Function money_format() is deprecated in /in/JEZds on line 30 money_format: $203.78 number_format: 203.78 string(7) "46.2150" Deprecated: Function money_format() is deprecated in /in/JEZds on line 30 money_format: $46.22 number_format: 46.22
Output for 7.4.0
string(7) "47.5875" Deprecated: Function money_format() is deprecated in /in/JEZds on line 30 money_format: 47.59 number_format: 47.59 string(7) "20.0475" Deprecated: Function money_format() is deprecated in /in/JEZds on line 30 money_format: 20.05 number_format: 20.05 string(8) "203.7750" Deprecated: Function money_format() is deprecated in /in/JEZds on line 30 money_format: 203.78 number_format: 203.78 string(7) "46.2150" Deprecated: Function money_format() is deprecated in /in/JEZds on line 30 money_format: 46.22 number_format: 46.22
Output for 7.2.29 - 7.2.33, 7.3.16 - 7.3.31
string(7) "47.5875" money_format: $47.59 number_format: 47.59 string(7) "20.0475" money_format: $20.05 number_format: 20.05 string(8) "203.7750" money_format: $203.78 number_format: 203.78 string(7) "46.2150" money_format: $46.22 number_format: 46.22
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.25, 7.3.0 - 7.3.12
string(7) "47.5875" money_format: 47.59 number_format: 47.59 string(7) "20.0475" money_format: 20.05 number_format: 20.05 string(8) "203.7750" money_format: 203.78 number_format: 203.78 string(7) "46.2150" money_format: 46.22 number_format: 46.22

preferences:
282.93 ms | 403 KiB | 286 Q