3v4l.org

run code in 300+ PHP versions simultaneously
<?php function truncate($string, $width, $on = '[break]') { if (strlen($string) > $width && false !== ($p = strpos(wordwrap($string, $width, $on), $on))) { $string = sprintf('%.'. $p . 's', $string); } return $string; } var_dump(truncate('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ', 20)); /* string(36) "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" */ var_dump(truncate("Lorem Ipsum is simply dummy text of the printing and typesetting industry.", 20)); /* string(14) "Lorem Ipsum is" */ var_dump(truncate("Lorem Ipsum\nis simply dummy text of the printing and typesetting industry.", 20)); /* string(14) "Lorem Ipsum is" */ function truncate_strtok($string, $width) { return strtok(wordwrap($string, $width), "\n"); } var_dump(truncate_strtok("Lorem Ipsum\nis simply dummy text of the printing and typesetting industry.", 20)); /* string(11) "Lorem Ipsum" */ var_dump(truncate_strtok("Lorem Ipsum is simply dummy text of the printing and typesetting industry.", 20)); /* string(14) "Lorem Ipsum is" */ function truncate_wrap($string, $width) { if (strlen($string) > $width) { $string = wordwrap($string, $width); $string = substr($string, 0, strpos($string, "\n")); } return $string; } var_dump(truncate_wrap("Lorem Ipsum\nis simply dummy text of the printing and typesetting industry.", 20)); /* string(11) "Lorem Ipsum" */ var_dump(truncate_wrap("Lorem Ipsum is simply dummy text of the printing and typesetting industry.", 20)); /* string(14) "Lorem Ipsum is" */

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.120.0040.00420.59
8.4.110.0070.01218.70
8.4.100.0030.00718.96
8.4.90.0130.00817.64
8.4.80.0130.00717.75
8.4.70.0120.00817.70
8.4.60.0130.00718.81
8.4.50.0100.01117.59
8.4.40.0130.00717.57
8.4.30.0130.01020.42
8.4.20.0090.00017.94
8.4.10.0140.00719.30
8.3.250.0140.00419.11
8.3.240.0110.00916.63
8.3.230.0070.00516.72
8.3.220.0120.00517.38
8.3.210.0100.00816.61
8.3.200.0060.00516.76
8.3.190.0050.00319.20
8.3.180.0130.00516.70
8.3.170.0150.00322.62
8.3.160.0120.00617.10
8.3.150.0090.00916.54
8.3.140.0040.01417.34
8.3.130.0070.01316.87
8.3.120.0000.01120.61
8.3.110.0140.00018.23
8.3.100.0130.00716.83
8.3.90.0070.00026.77
8.3.80.0060.00316.63
8.3.70.0070.00716.58
8.3.60.0090.00616.75
8.3.50.0100.00723.57
8.3.40.0140.00719.27
8.3.30.0120.00318.69
8.3.20.0080.00021.86
8.3.10.0030.00520.16
8.3.00.0070.00023.71
8.2.290.0110.00820.48
8.2.280.0140.00719.82
8.2.270.0130.00616.91
8.2.260.0000.00818.30
8.2.250.0040.00418.36
8.2.240.0090.00619.08
8.2.230.0000.00820.94
8.2.220.0030.00524.06
8.2.210.0140.00426.77
8.2.200.0090.00018.42
8.2.190.0160.00616.63
8.2.180.0040.01125.92
8.2.170.0070.00718.79
8.2.160.0090.00622.96
8.2.150.0060.01125.66
8.2.140.0080.00024.66
8.2.130.0070.00026.16
8.2.120.0000.00821.04
8.2.110.0070.00321.06
8.2.100.0030.00917.72
8.2.90.0000.00918.16
8.2.80.0040.00420.59
8.2.70.0040.00417.93
8.2.60.0060.00318.22
8.2.50.0030.00519.38
8.2.40.0030.00919.46
8.2.30.0040.00419.30
8.2.20.0040.00418.15
8.2.10.0000.00819.17
8.2.00.0040.00419.34
8.1.330.0120.00622.13
8.1.320.0080.01016.32
8.1.310.0140.00318.57
8.1.300.0070.01318.30
8.1.290.0070.00430.84
8.1.280.0140.00425.92
8.1.270.0040.00423.99
8.1.260.0060.00326.35
8.1.250.0000.00828.09
8.1.240.0120.00622.74
8.1.230.0060.00620.97
8.1.220.0040.00417.74
8.1.210.0040.00418.91
8.1.200.0060.00317.35
8.1.190.0040.00417.35
8.1.180.0000.00718.85
8.1.170.0090.00018.70
8.1.160.0040.00419.05
8.1.150.0080.00018.89
8.1.140.0000.00718.91
8.1.130.0040.00417.36
8.1.120.0030.00317.54
8.1.110.0040.00417.46
8.1.100.0040.00417.51
8.1.90.0000.00717.40
8.1.80.0060.00317.32
8.1.70.0070.00017.50
8.1.60.0000.00817.53
8.1.50.0040.00417.41
8.1.40.0030.00617.52
8.1.30.0030.00617.64
8.1.20.0000.00917.65
8.1.10.0040.00417.46
8.1.00.0080.00317.50
8.0.300.0040.00420.15
8.0.290.0040.00416.88
8.0.280.0040.00418.36
8.0.270.0040.00416.86
8.0.260.0050.00216.91
8.0.250.0000.00716.91
8.0.240.0040.00417.06
8.0.230.0070.00016.96
8.0.220.0030.00316.82
8.0.210.0000.00716.93
8.0.200.0070.00016.91
8.0.190.0030.00317.04
8.0.180.0040.00416.94
8.0.170.0050.00516.92
8.0.160.0030.00916.84
8.0.150.0000.00716.77
8.0.140.0000.00716.90
8.0.130.0060.00013.33
8.0.120.0050.00216.96
8.0.110.0000.00716.82
8.0.100.0040.00416.95
8.0.90.0030.00616.88
8.0.80.0110.00616.89
8.0.70.0050.00216.82
8.0.60.0040.00416.83
8.0.50.0000.00716.75
8.0.30.0060.00916.99
8.0.20.0130.01017.16
8.0.10.0070.00017.07
8.0.00.0120.00616.84
7.4.330.0050.00015.55
7.4.320.0070.00016.59
7.4.300.0050.00316.54
7.4.290.0000.00716.54
7.4.280.0000.00816.68
7.4.270.0000.00716.67
7.4.260.0000.00513.31
7.4.250.0000.00816.54
7.4.240.0020.00516.54
7.4.230.0030.00316.44
7.4.220.0030.00316.72
7.4.210.0100.00816.64
7.4.200.0030.00316.68
7.4.130.0120.00616.70
7.4.120.0070.01116.62
7.4.110.0120.00616.31
7.4.100.0160.00316.54
7.4.90.0090.00916.42
7.4.80.0140.00319.39
7.4.70.0090.01216.48
7.4.60.0120.00316.57
7.4.50.0060.00916.44
7.4.40.0100.00716.46
7.4.30.0090.00916.77
7.4.20.0060.01016.48
7.4.10.0090.01216.51
7.4.00.0090.00916.60
7.3.330.0040.00416.40
7.3.320.0000.00513.17
7.3.310.0000.00716.40
7.3.300.0050.00316.25
7.3.290.0100.00616.35
7.3.280.0040.01116.40
7.3.260.0100.00616.31
7.3.230.0070.01116.66
7.3.210.0060.01116.37
7.3.200.0060.01216.70
7.3.190.0110.00816.56
7.3.180.0090.00916.41
7.3.170.0130.01016.34
7.3.160.0120.00816.41
7.3.150.0140.00316.20
7.3.140.0060.01016.57
7.3.130.0090.01216.57
7.3.120.0090.00916.45
7.3.110.0110.00516.50
7.3.100.0140.00316.50
7.3.90.0120.00916.33
7.3.80.0100.00716.68
7.3.70.0150.00616.31
7.3.60.0140.00316.41
7.3.50.0040.01416.27
7.3.40.0090.00916.43
7.3.30.0130.00316.55
7.3.20.0130.00416.47
7.3.10.0040.01316.52
7.3.00.0130.00616.19
7.2.330.0090.00916.86
7.2.320.0030.01416.82
7.2.310.0070.01516.73
7.2.300.0150.00916.45
7.2.290.0130.00316.61
7.2.280.0060.01116.63
7.2.270.0110.00716.82
7.2.260.0080.01116.67
7.2.250.0130.00416.73
7.2.240.0160.00616.80
7.2.230.0090.01216.76
7.2.220.0110.00716.71
7.2.210.0090.00916.79
7.2.200.0100.00716.56
7.2.190.0030.01516.64
7.2.180.0030.01516.59
7.2.170.0060.01316.73
7.2.160.0090.00916.69
7.2.150.0090.00916.86
7.2.140.0110.00716.77
7.2.130.0100.00716.74
7.2.120.0090.00916.66
7.2.110.0060.01216.56
7.2.100.0120.00616.82
7.2.90.0140.01316.77
7.2.80.0090.00916.62
7.2.70.0080.01116.65
7.2.60.0030.01616.83
7.2.50.0060.01516.68
7.2.40.0140.00316.67
7.2.30.0230.00416.71
7.2.20.0090.00916.70
7.2.10.0130.01016.68
7.2.00.0600.00316.73
7.1.330.0300.01015.52
7.1.320.0260.00715.63
7.1.310.0250.00315.67
7.1.300.0320.01415.59
7.1.290.0260.00615.60
7.1.280.0190.01015.47
7.1.270.0210.00915.62
7.1.260.0130.01315.44
7.1.250.0220.00715.47
7.1.240.0270.00315.61
7.1.230.0280.00315.67
7.1.220.0230.00615.37
7.1.210.0200.01015.60
7.1.200.0220.00715.59
7.1.190.0190.00915.45
7.1.180.0190.00915.62
7.1.170.0180.01315.60
7.1.160.0190.00915.45
7.1.150.0230.00515.50
7.1.140.0150.01615.43
7.1.130.0200.00915.50
7.1.120.0110.01115.10
7.1.110.0190.00615.38
7.1.100.0150.00615.25
7.1.90.0180.00415.23
7.1.80.0200.00415.62
7.1.70.0140.01415.39
7.1.60.0190.01315.38
7.1.50.0170.01215.46
7.1.40.0120.00915.39
7.1.30.0160.00515.35
7.1.20.0170.01015.47
7.1.10.0090.01215.66
7.1.00.0220.00415.44
7.0.330.0210.00815.23
7.0.320.0260.00415.33
7.0.310.0260.00915.06
7.0.300.0410.00315.28
7.0.290.0190.01015.41
7.0.280.0200.00815.32
7.0.270.0120.00915.20
7.0.260.0180.00715.34
7.0.250.0250.00615.39
7.0.240.0150.00415.07
7.0.230.0110.01115.11
7.0.220.0250.00015.21
7.0.210.0090.01615.22
7.0.200.0260.00415.12
7.0.190.0160.00815.07
7.0.180.0040.01615.18
7.0.170.0150.00715.05
7.0.160.0320.00415.25
7.0.150.0150.01215.23
7.0.140.0180.00515.28
7.0.130.0180.00614.98
7.0.120.0210.00415.36
7.0.110.0180.00815.02
7.0.100.0120.01215.10
7.0.90.0040.01815.27
7.0.80.0140.01715.25
7.0.70.0200.01015.27
7.0.60.0140.01015.26
7.0.50.0170.00515.03
7.0.40.0170.00815.21
7.0.30.0120.01215.24
7.0.20.0150.00915.31
7.0.10.0130.01315.11
7.0.00.0200.00615.23
5.6.400.0230.00715.83
5.6.390.0130.01615.77
5.6.380.0180.01316.09
5.6.370.0090.01915.74
5.6.360.0130.01316.13
5.6.350.0140.01415.77
5.6.340.0160.01315.77
5.6.330.0090.01515.35
5.6.320.0170.01015.86
5.6.310.0110.01816.00
5.6.300.0150.01115.80
5.6.290.0180.00715.79
5.6.280.0090.01415.44
5.6.270.0240.00315.61
5.6.260.0140.01415.78
5.6.250.0130.01315.88
5.6.240.0160.01015.90
5.6.230.0160.01715.91
5.6.220.0180.00415.72
5.6.210.0150.01215.63
5.6.200.0200.01215.80
5.6.190.0290.00715.75
5.6.180.0190.01215.98
5.6.170.0210.00915.65
5.6.160.0180.00915.86
5.6.150.0120.01515.91
5.6.140.0080.01715.96
5.6.130.0170.01116.02
5.6.120.0200.00815.87
5.6.110.0190.01115.78
5.6.100.0210.00715.68
5.6.90.0200.00715.95
5.6.80.0170.01415.74
5.6.70.0110.01815.67
5.6.60.0210.00915.86
5.6.50.0120.01315.41
5.6.40.0190.00415.66
5.6.30.0180.00715.83
5.6.20.0060.01515.73
5.6.10.0170.00915.66
5.6.00.0180.00915.61
5.5.380.0300.00015.86
5.5.370.0110.01915.57
5.5.360.0170.00715.41
5.5.350.0220.00615.86
5.5.340.0290.00315.95
5.5.330.0260.00615.68
5.5.320.0140.01815.65
5.5.310.0160.01215.67
5.5.300.0260.00515.68
5.5.290.0230.01315.62
5.5.280.0230.01015.79
5.5.270.0170.01415.34
5.5.260.0260.01016.02
5.5.250.0180.01115.76
5.5.240.0140.01515.89
5.5.230.0230.00815.80
5.5.220.0160.01215.71
5.5.210.0120.01615.85
5.5.200.0200.00715.59
5.5.190.0160.00915.66
5.5.180.0240.00315.71
5.5.170.0180.01315.79
5.5.160.0150.01515.73
5.5.150.0240.00315.90
5.5.140.0180.01115.48
5.5.130.0230.00815.77
5.5.120.0290.00415.84
5.5.110.0130.01615.55
5.5.100.0170.01115.80
5.5.90.0120.01315.84
5.5.80.0190.00815.73
5.5.70.0140.00915.57
5.5.60.0130.01615.71
5.5.50.0170.01115.81
5.5.40.0180.01415.68
5.5.30.0250.00315.47
5.5.20.0160.01015.43
5.5.10.0190.00915.45
5.5.00.0150.01115.80
5.4.450.0190.00812.65
5.4.440.0100.01012.70
5.4.430.0130.00712.64
5.4.420.0140.01412.55
5.4.410.0170.00412.62
5.4.400.0100.00812.56
5.4.390.0210.00412.66
5.4.380.0150.00412.47
5.4.370.0110.00712.41
5.4.360.0150.00612.61
5.4.350.0110.00612.38
5.4.340.0160.00812.36
5.4.330.0180.00412.50
5.4.320.0200.00312.50
5.4.310.0140.00912.60
5.4.300.0160.00612.50
5.4.290.0140.00812.57
5.4.280.0130.01012.63
5.4.270.0140.00712.39
5.4.260.0110.01112.40
5.4.250.0160.00512.53
5.4.240.0150.00812.53
5.4.230.0050.01512.38
5.4.220.0190.00712.68
5.4.210.0110.01712.46
5.4.200.0120.00912.54
5.4.190.0180.00312.31
5.4.180.0170.00412.72
5.4.170.0130.00712.55
5.4.160.0100.01012.72
5.4.150.0130.00612.36
5.4.140.0150.00612.56
5.4.130.0040.01812.73
5.4.120.0150.00712.39
5.4.110.0080.01112.64
5.4.100.0190.00612.81
5.4.90.0130.00712.46
5.4.80.0080.00812.36
5.4.70.0160.00012.54
5.4.60.0130.00812.34
5.4.50.0130.00712.43
5.4.40.0090.00912.57
5.4.30.0130.00612.58
5.4.20.0150.00912.51
5.4.10.0170.00412.42
5.4.00.0130.00912.69
5.3.290.0210.00313.21
5.3.280.0190.00613.03
5.3.270.0230.00713.02
5.3.260.0160.00612.97
5.3.250.0110.01113.04
5.3.240.0080.01212.94
5.3.230.0120.01212.98
5.3.220.0030.01512.89
5.3.210.0120.00912.91
5.3.200.0200.00712.88
5.3.190.0140.00313.18
5.3.180.0110.00813.04
5.3.170.0040.01513.04
5.3.160.0150.00313.10
5.3.150.0110.00813.04
5.3.140.0090.00913.07
5.3.130.0110.01713.23
5.3.120.0130.00612.93
5.3.110.0140.01013.05
5.3.100.0130.00612.97
5.3.90.0100.01013.15
5.3.80.0100.01613.04
5.3.70.0190.00412.97
5.3.60.0170.00613.21
5.3.50.0130.00813.04
5.3.40.0140.00513.00
5.3.30.0120.00913.09
5.3.20.0090.01313.06
5.3.10.0140.00612.86
5.3.00.0080.01112.82
5.2.170.0110.00912.31
5.2.160.0150.00412.09
5.2.150.0190.00412.11
5.2.140.0130.00512.26
5.2.130.0110.00911.91
5.2.120.0070.01111.99
5.2.110.0040.01512.06
5.2.100.0110.00812.03
5.2.90.0160.00312.00
5.2.80.0120.00611.93
5.2.70.0080.01011.86
5.2.60.0110.00711.85
5.2.50.0140.00311.82
5.2.40.0120.00611.90
5.2.30.0160.00411.87
5.2.20.0110.00811.77
5.2.10.0100.00711.91
5.2.00.0150.00311.71
5.1.60.0090.00911.71
5.1.50.0120.00611.71
5.1.40.0100.00611.71
5.1.30.0130.00611.71
5.1.20.0100.00711.71
5.1.10.0110.00811.71
5.1.00.0110.00411.71
5.0.50.0100.00311.71
5.0.40.0120.00211.71
5.0.30.0140.00011.71
5.0.20.0070.01111.71
5.0.10.0070.00711.71
5.0.00.0090.00911.71
4.4.90.0040.00611.71
4.4.80.0090.00011.71
4.4.70.0060.00211.71
4.4.60.0060.00311.71
4.4.50.0000.00911.71
4.4.40.0080.00211.71
4.4.30.0080.00011.71
4.4.20.0040.00511.71
4.4.10.0000.00811.71
4.4.00.0040.00411.71
4.3.110.0070.00211.71
4.3.100.0030.00611.71
4.3.90.0000.00911.71
4.3.80.0040.00411.71
4.3.70.0090.00311.71
4.3.60.0060.00311.71
4.3.50.0040.00411.71
4.3.40.0030.00911.71
4.3.30.0040.00411.71
4.3.20.0080.00011.71
4.3.10.0080.00011.71
4.3.00.0080.00011.71

preferences:
31.09 ms | 403 KiB | 5 Q