3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Generate a random string, using a cryptographically secure * pseudorandom number generator (random_int) * * For PHP 7, random_int is a PHP core function * For PHP 5.x, depends on https://github.com/paragonie/random_compat * * @param int $length How many characters do we want? * @param string $keyspace A string of all possible characters * to select from * @return string */ function random_str( int $length = 64, string $keyspace = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' ): string { if ($length < 1) { throw new \RangeException("Length must be a positive integer"); } $pieces = []; $max = mb_strlen($keyspace, '8bit') - 1; for ($i = 0; $i < $length; ++$i) { $pieces []= $keyspace[random_int(0, $max)]; } return implode('', $pieces); } $a = random_str(32); $b = random_str(8, 'abcdefghijklmnopqrstuvwxyz'); $c = random_str(); var_dump($a, $b, $c);

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.5.30.0200.00417.38
8.5.20.0270.01016.30
8.5.10.0270.00316.53
8.5.00.0180.00416.42
8.4.180.0170.00619.46
8.4.170.0180.00619.51
8.4.160.0180.00919.82
8.4.150.0260.01019.80
8.4.140.0140.01017.59
8.4.130.0260.00917.48
8.4.120.0380.00917.48
8.4.110.0420.00917.61
8.4.100.0360.01017.44
8.4.90.0390.00917.61
8.4.80.0330.00917.63
8.4.70.0370.01017.50
8.4.60.0370.00817.59
8.4.50.0410.00717.56
8.4.40.0350.00817.41
8.4.30.0360.00817.42
8.4.20.0330.00717.40
8.4.10.0260.00917.94
8.3.300.0220.00618.21
8.3.290.0130.00618.15
8.3.280.0150.00718.21
8.3.270.0330.01116.40
8.3.260.0340.01016.45
8.3.250.0290.00816.45
8.3.240.0330.00916.43
8.3.230.0290.00816.41
8.3.220.0300.00916.43
8.3.210.0290.00716.46
8.3.200.0310.00716.50
8.3.190.0330.00916.54
8.3.180.0340.00716.40
8.3.170.0340.00716.49
8.3.160.0310.00716.53
8.3.150.0290.00816.58
8.3.140.0280.00716.54
8.3.130.0260.00816.36
8.3.120.0290.00616.52
8.3.110.0300.00616.57
8.3.100.0310.00819.27
8.3.90.0240.00820.61
8.3.80.0300.00817.10
8.3.70.0320.00817.12
8.3.60.0310.01018.30
8.3.50.0350.00917.24
8.3.40.0320.00818.13
8.3.30.0250.00718.08
8.3.20.0270.00618.11
8.3.10.0250.00818.10
8.3.00.0230.00718.09
8.2.300.0290.00417.68
8.2.290.0290.00916.50
8.2.280.0280.00816.49
8.2.270.0290.00716.45
8.2.260.0280.00716.50
8.2.250.0260.00716.45
8.2.240.0290.00616.37
8.2.230.0270.00716.38
8.2.220.0280.00816.45
8.2.210.0270.00817.07
8.2.200.0280.00917.11
8.2.190.0300.00817.10
8.2.180.0310.00717.12
8.2.170.0290.00818.32
8.2.160.0320.00818.81
8.2.150.0240.00819.41
8.2.140.0290.00918.92
8.2.130.0250.00821.73
8.2.120.0290.00918.17
8.2.110.0230.00819.45
8.2.100.0260.00618.27
8.2.90.0280.00718.18
8.2.80.0270.00918.12
8.2.70.0180.00543.01
8.2.60.0270.00621.68
8.2.50.0220.00821.26
8.2.40.0230.00721.02
8.2.30.0180.00520.40
8.2.20.0180.00620.76
8.2.10.0130.00719.43
8.2.00.0170.00720.09
8.1.340.0350.00617.64
8.1.330.0290.01016.10
8.1.320.0280.00816.03
8.1.310.0240.00716.20
8.1.300.0300.00816.13
8.1.290.0260.00716.86
8.1.280.0270.00816.89
8.1.270.0270.00717.83
8.1.260.0260.00817.87
8.1.250.0300.00717.86
8.1.240.0240.00918.12
8.1.230.0280.00717.89
8.1.220.0290.00617.93
8.1.210.0300.00917.77
8.1.200.0240.00721.14
8.1.190.0220.00721.45
8.1.180.0220.00421.11
8.1.170.0210.00621.08
8.1.160.0200.00720.86
8.1.150.0200.00820.82
8.1.140.0150.00619.72
8.1.130.0190.00820.02
8.1.120.0180.00619.88
8.1.110.0160.00619.58
8.1.100.0150.00619.14
8.1.90.0150.00519.17
8.1.80.0150.00619.13
8.1.70.0110.00618.51
8.1.60.0150.00518.86
8.1.50.0150.00618.88
8.1.40.0160.00618.93
8.1.30.0160.00518.85
8.1.20.0160.00518.66
8.1.10.0150.00518.48
8.1.00.0170.00618.56
8.0.300.0290.00718.84
8.0.290.0260.00621.05
8.0.280.0230.00620.46
8.0.270.0210.00720.03
8.0.260.0200.00519.66
8.0.250.0170.00519.40
8.0.240.0160.00519.24
8.0.230.0140.00718.80
8.0.220.0160.00618.75
8.0.210.0150.00618.63
8.0.200.0150.00618.57
8.0.190.0150.00518.49
8.0.180.0150.00518.35
8.0.170.0140.00718.37
8.0.160.0140.00518.09
8.0.150.0150.00517.98
8.0.140.0140.00517.88
8.0.130.0140.00617.93
8.0.120.0130.00517.13
8.0.110.0130.00517.69
8.0.100.0130.00517.68
8.0.90.0130.00517.65
8.0.80.0130.00617.53
8.0.70.0130.00617.58
8.0.60.0120.00617.61
8.0.50.0130.00517.61
8.0.30.0130.00617.38
8.0.20.0130.00617.46
8.0.10.0130.00717.43
8.0.00.0120.00617.44
7.4.330.0170.00518.78
7.4.320.0180.00418.79
7.4.300.0130.00418.06
7.4.290.0130.00517.83
7.4.280.0130.00517.58
7.4.270.0130.00517.41
7.4.260.0140.00517.55
7.4.250.0140.00517.15
7.4.240.0130.00517.40
7.4.230.0120.00517.35
7.4.220.0110.00517.28
7.4.210.0110.00517.28
7.4.200.0110.00517.31
7.4.190.0110.00517.38
7.4.180.0110.00617.38
7.4.160.0120.00617.17
7.4.150.0120.00617.09
7.4.140.0120.00617.10
7.4.130.0120.00717.05
7.4.120.0120.00617.04
7.4.110.0120.00716.96
7.4.100.0110.00717.00
7.4.90.0110.00716.94
7.4.80.0120.00716.90
7.4.70.0110.00716.90
7.4.60.0110.00716.87
7.4.50.0110.00816.75
7.4.40.0110.00716.75
7.4.30.0110.00716.78
7.4.20.0110.00716.74
7.4.10.0110.00716.72
7.4.00.0100.00716.70
7.3.330.0140.00517.34
7.3.320.0150.00517.22
7.3.310.0150.00517.31
7.3.300.0140.00517.24
7.3.290.0120.00517.02
7.3.280.0130.00617.04
7.3.270.0130.00616.89
7.3.260.0130.00616.88
7.3.250.0130.00616.86
7.3.240.0130.00716.85
7.3.230.0130.00716.82
7.3.220.0130.00716.79
7.3.210.0130.00716.79
7.3.200.0130.00716.76
7.3.190.0120.00716.75
7.3.180.0120.00716.73
7.3.170.0130.00716.71
7.3.160.0120.00716.72
7.3.150.0120.00716.69
7.3.140.0130.00716.68
7.3.130.0120.00716.66
7.3.120.0120.00716.55
7.3.110.0110.00816.47
7.3.100.0120.00716.31
7.3.90.0120.00816.36
7.3.80.0120.00716.25
7.3.70.0120.00716.28
7.3.60.0110.00816.32
7.3.50.0120.00716.29
7.3.40.0120.00716.29
7.3.30.0110.00816.29
7.3.20.0140.00816.79
7.3.10.0140.00716.74
7.3.00.0140.00816.75
7.2.340.0170.00716.92
7.2.330.0160.00716.86
7.2.320.0160.00716.85
7.2.310.0160.00716.80
7.2.300.0150.00816.82
7.2.290.0150.00816.79
7.2.280.0150.00816.78
7.2.270.0150.00816.76
7.2.260.0150.00816.75
7.2.250.0140.00816.71
7.2.240.0140.00816.63
7.2.230.0140.00816.50
7.2.220.0140.00816.42
7.2.210.0140.00816.38
7.2.200.0130.00816.44
7.2.190.0130.00816.41
7.2.180.0130.00816.40
7.2.170.0130.00816.43
7.2.160.0130.00816.42
7.2.150.0150.00816.95
7.2.140.0140.00816.95
7.2.130.0150.00817.02
7.2.120.0140.00816.97
7.2.110.0140.00816.97
7.2.100.0160.00816.97
7.2.90.0150.00816.94
7.2.80.0150.00816.95
7.2.70.0150.00916.95
7.2.60.0140.00816.96
7.2.50.0150.00816.96
7.2.40.0150.00816.98
7.2.30.0150.00816.99
7.2.20.0160.00916.98
7.2.10.0160.00816.98
7.2.00.0150.00817.00
7.1.330.0170.00816.28
7.1.320.0160.00716.05
7.1.310.0160.00816.02
7.1.300.0160.00815.98
7.1.290.0170.00815.98
7.1.280.0170.00815.98
7.1.270.0160.00715.98
7.1.260.0160.00815.97
7.1.250.0160.00815.95
7.1.240.0180.00816.39
7.1.230.0180.00716.40
7.1.220.0170.00716.41
7.1.210.0170.00716.42
7.1.200.0170.00716.41
7.1.190.0160.00816.42
7.1.180.0170.00716.37
7.1.170.0180.00716.37
7.1.160.0180.00716.37
7.1.150.0180.00816.36
7.1.140.0180.00816.38
7.1.130.0180.00716.37
7.1.120.0180.00816.35
7.1.110.0180.00716.48
7.1.100.0170.00716.40
7.1.90.0170.00716.39
7.1.80.0170.00816.42
7.1.70.0170.00716.31
7.1.60.0170.00716.42
7.1.50.0160.00716.42
7.1.40.0170.00716.43
7.1.30.0170.00716.43
7.1.20.0170.00816.41
7.1.10.0160.00816.39
7.1.00.0170.00716.39

preferences:
31.88 ms | 403 KiB | 5 Q