3v4l.org

run code in 300+ PHP versions simultaneously
<?php # some text $buffer = <<<TEXT it need to only select , when there is number around it. for example only when 123,456 i need to select and replace "," I'm converting English numbers into Persian (e.g: "Hello 123" becomes "Hello ۱۲۳"). now I need to replace the Decimal separator with Persian version too. but I don't know how I can select it with regex. e.g: "Hello 121,534" most become "Hello ۱۲۱/۵۳۴" The character that needs to be replaced is , with / TEXT; # prepare formatters $inFormat = new NumberFormatter('en_UK', NumberFormatter::DECIMAL); $outFormat = new NumberFormatter('fa_IR', NumberFormatter::DECIMAL); $bufferWithFarsiNumbers = preg_replace_callback( '(\b[1-9]\d{0,2}(?:[ ,.]\d{3})*\b)u', function (array $matches) use ($inFormat, $outFormat) { [$number] = $matches; $result = $inFormat->parse($number); if (false === $result) { return $number; } return sprintf("< %s (%.4f) = %s >", $number, $result, $outFormat->format($result)); }, $buffer ); echo $bufferWithFarsiNumbers;

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
8.4.140.0140.02520.82
8.4.130.0140.02220.97
8.4.120.0090.02025.46
8.4.110.0130.02323.10
8.4.100.0160.01320.95
8.4.90.0160.02023.33
8.4.80.0100.02121.60
8.4.70.0130.02422.15
8.4.60.0160.02621.96
8.4.50.0130.02921.73
8.4.40.0090.01620.83
8.4.30.0170.01723.55
8.4.20.0130.02523.55
8.4.10.0030.01322.63
8.3.270.0190.02419.78
8.3.260.0150.01319.64
8.3.250.0150.01822.15
8.3.240.0130.01219.81
8.3.230.0100.02219.65
8.3.220.0130.01821.99
8.3.210.0100.02621.71
8.3.200.0060.01019.74
8.3.190.0130.02421.45
8.3.180.0140.02322.10
8.3.170.0100.02420.39
8.3.160.0100.02020.38
8.3.150.0080.00819.88
8.3.140.0090.00620.07
8.3.130.0100.00721.75
8.3.120.0140.01421.83
8.3.110.0060.00920.03
8.3.100.0040.01421.41
8.3.90.0040.01326.77
8.3.80.0090.01121.54
8.3.70.0030.03021.68
8.3.60.0090.01821.81
8.3.50.0050.03119.72
8.3.40.0060.00920.54
8.3.30.0150.00020.51
8.3.20.0080.00022.35
8.3.10.0080.00021.85
8.3.00.0000.00825.05
8.2.290.0050.01019.72
8.2.280.0150.02221.50
8.2.270.0100.02321.85
8.2.260.0090.00620.30
8.2.250.0100.00721.48
8.2.240.0200.01720.21
8.2.230.0000.02220.94
8.2.220.0040.01837.54
8.2.210.0000.01426.77
8.2.200.0110.01121.31
8.2.190.0030.02419.63
8.2.180.0150.01521.79
8.2.170.0100.00722.96
8.2.160.0070.00721.88
8.2.150.0060.00324.18
8.2.140.0000.00924.66
8.2.130.0000.00826.16
8.2.120.0040.00420.89
8.2.110.0070.00321.30
8.2.100.0090.00320.09
8.2.90.0100.00520.03
8.2.80.0040.00419.93
8.2.70.0060.00319.80
8.2.60.0030.00620.22
8.2.50.0000.00820.05
8.2.40.0040.00421.23
8.2.30.0040.00420.86
8.2.20.0000.00820.23
8.2.10.0040.00422.61
8.2.00.0000.00821.04
8.1.330.0150.01919.59
8.1.320.0280.02419.42
8.1.310.0100.02320.08
8.1.300.0130.02020.89
8.1.290.0100.00721.06
8.1.280.0130.02625.92
8.1.270.0000.01023.80
8.1.260.0080.00026.35
8.1.250.0040.00428.09
8.1.240.0000.00923.77
8.1.230.0060.00622.91
8.1.220.0050.00319.88
8.1.210.0110.00020.74
8.1.200.0090.00919.59
8.1.190.0060.00319.13
8.1.180.0100.00019.52
8.1.170.0080.00020.77
8.1.160.0030.00520.52
8.1.150.0000.00820.47
8.1.140.0030.00520.54
8.1.130.0050.00321.77
8.1.120.0040.00419.54
8.1.110.0080.00019.75
8.1.100.0040.00419.52
8.1.90.0050.00319.60
8.1.80.0000.00819.67
8.1.70.0000.00819.76
8.1.60.0080.00019.86
8.1.50.0050.00319.46
8.1.40.0030.00619.71
8.1.30.0030.00519.99
8.1.20.0000.00819.87
8.1.10.0000.00819.65
8.1.00.0080.00019.84
8.0.300.0040.00421.64
8.0.290.0060.00918.88
8.0.280.0080.00020.03
8.0.270.0040.00419.21
8.0.260.0000.00821.78
8.0.250.0000.01019.08
8.0.240.0060.00319.07
8.0.230.0070.00019.06
8.0.220.0080.00419.06
8.0.210.0080.00019.27
8.0.200.0000.00719.20
8.0.190.0040.00419.09
8.0.180.0030.00519.14
8.0.170.0030.00619.19
8.0.160.0040.00419.17
8.0.150.0050.00319.09
8.0.140.0060.00318.99
8.0.130.0030.00313.25
8.0.120.0050.00319.13
8.0.110.0000.00819.20
8.0.100.0030.00619.26
8.0.90.0060.00319.24
8.0.80.0060.00919.35
8.0.70.0060.00319.21
8.0.60.0060.00319.32
8.0.50.0040.00419.43
8.0.30.0120.00819.48
8.0.20.0120.00819.30
8.0.10.0050.00319.25
8.0.00.0130.00919.26
7.4.330.0030.00315.55
7.4.320.0030.00319.12
7.4.300.0050.00318.93
7.4.290.0000.00819.01
7.4.280.0030.00519.09
7.4.270.0040.00418.81
7.4.260.0030.00718.93
7.4.250.0030.00519.06
7.4.240.0000.00819.04
7.4.230.0000.00719.01
7.4.220.0050.00518.89
7.4.210.0050.01219.11
7.4.200.0020.00519.13
7.4.160.0080.01018.81
7.4.130.0090.00919.01
7.4.120.0120.00618.93
7.4.110.0120.01218.79
7.4.100.0170.00618.93
7.4.90.0150.00418.95
7.4.80.0130.00919.39
7.4.70.0060.01219.09
7.4.60.0030.01418.73
7.4.50.0060.01218.91
7.4.40.0110.00618.94
7.4.00.0070.01117.22
7.3.330.0000.00513.28
7.3.320.0030.00313.30
7.3.310.0040.00418.60
7.3.300.0070.00018.81
7.3.290.0000.00718.45
7.3.280.0080.01018.75
7.3.260.0160.00518.76
7.3.240.0070.01318.95
7.3.230.0150.00318.52
7.3.210.0000.01918.82
7.3.200.0070.01419.00
7.3.190.0090.00918.86
7.3.180.0030.01318.80
7.3.170.0170.00318.74
7.3.160.0100.00718.86
7.3.120.0030.01417.26
7.3.110.0030.01317.25
7.3.100.0030.00917.05
7.3.90.0110.00417.39
7.3.80.0000.01517.19
7.3.70.0030.00717.20
7.3.60.0000.01417.10
7.3.50.0080.00617.33
7.3.40.0050.01017.13
7.3.30.0050.01217.11
7.3.20.0080.00817.89
7.3.10.0450.00817.71
7.3.00.0100.01017.80
7.2.330.0100.00919.16
7.2.320.0090.00918.75
7.2.310.0070.01318.78
7.2.300.0100.00718.77
7.2.290.0110.00718.82
7.2.250.0070.01317.21
7.2.240.0120.00917.36
7.2.230.0030.00717.24
7.2.220.0090.00417.31
7.2.210.0040.01217.04
7.2.200.0090.00617.23
7.2.190.0070.00717.21
7.2.180.0000.01617.21
7.2.170.0060.00617.02
7.2.160.0120.00917.16
7.2.150.0150.00317.11
7.2.140.0120.01217.27
7.2.130.0110.00917.06
7.2.120.0160.00317.11
7.2.110.0070.01016.64
7.2.100.0150.00617.14
7.2.90.0180.00317.05
7.2.80.0210.00717.16
7.2.70.0140.00716.88
7.2.60.0120.00417.00
7.2.50.0120.01217.23
7.2.40.0090.00917.16
7.2.30.0140.00317.27
7.2.20.0230.00516.92
7.2.10.0130.00717.30
7.2.00.0100.01017.15
7.1.330.0090.00618.01
7.1.320.0060.00618.00
7.1.310.0040.00717.91
7.1.300.0030.00717.93
7.1.290.0030.01317.84
7.1.280.0090.00717.00
7.1.270.0090.00817.08
7.1.260.0080.01117.27
7.1.250.0100.01016.41

preferences:
29.98 ms | 403 KiB | 5 Q