3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = [ 0 => [ "id" => 1, "name" => "Sammy", "phone" => "2348055643322", "email" => "sammy@abc.com" ], 1 => [ "id" => 2, "name" => "Saheed", "phone" => "", "email" => "saay@aol.com" ], 2 => [ "id" => 3, "name" => "Edwin", "phone" => "2348099993322", "email" => "eddy@gmail.com" ], 3 => [ "id" => 3, "name" => "Jonadab", "phone" => "2348066773322", "email" => "jonadab@gmail.com" ], 4 => [ "id" => 3, "name" => "Mercy", "phone" => "", "email" => "mercy@sysnet.com" ] ]; $start = microtime(true); $phone = array_filter(array_column($array, "phone")); $filtered = array_intersect_key($array, $phone); Echo "array_intersect_key: " . (microtime(true)-$start)*1000; $start = microtime(true); $column = 'phone'; //column to filter $result = array_filter($array, function($o) use($column) { return trim( $o[$column] ) !== '' && $o[$column] !== null; }); Echo "\n\narray_filter: " . (microtime(true)-$start)*1000; $start = microtime(true); foreach ($array as $index => $row) { if (strlen($row['phone'])) { // keep the original index $response [$index]= $row; } } Echo "\n\nforeach: " . (microtime(true)-$start)*1000; $start = microtime(true); $reulting_array = array_filter($array, function ($entry) { return !empty($entry['phone']); }); Echo "\n\narray_filter by SaAy: " . (microtime(true)-$start)*1000;

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.3.30.0060.01418.80
8.3.20.0090.00721.83
8.3.10.0130.00621.70
8.3.00.0110.00918.86
8.2.160.0250.00318.74
8.2.150.0120.00919.19
8.2.140.0060.01020.33
8.2.130.0060.00920.50
8.2.120.0180.00019.21
8.2.110.0030.01419.29
8.2.100.0190.00319.02
8.2.90.0090.01118.77
8.2.80.0070.01119.27
8.2.70.0110.00918.77
8.2.60.0100.01018.72
8.2.50.0160.00719.19
8.2.40.0150.00918.79
8.2.30.0070.01018.66
8.2.20.0190.00518.67
8.2.10.0140.00718.77
8.2.00.0170.00818.66
8.1.270.0110.00622.08
8.1.260.0120.00821.97
8.1.250.0080.01022.16
8.1.240.0170.00818.45
8.1.230.0150.01218.55
8.1.220.0120.01118.72
8.1.210.0080.01118.52
8.1.200.0160.00818.78
8.1.190.0110.01118.63
8.1.180.0160.00818.40
8.1.170.0120.00718.77
8.1.160.0050.01518.64
8.1.150.0120.01018.69
8.1.140.0170.00818.54
8.1.130.0100.00718.65
8.1.120.0150.00618.63
8.1.110.0190.00518.61
8.1.100.0140.00519.63
8.1.90.0130.00818.57
8.1.80.0170.00319.65
8.1.70.0100.01018.53
8.1.60.0160.00718.58
8.1.50.0220.00318.53
8.1.40.0150.00918.57
8.1.30.0080.00919.00
8.1.20.0110.01119.88
8.1.10.0180.00718.68
8.1.00.0170.00618.55
8.0.300.0070.00917.88
8.0.290.0260.00217.63
8.0.280.0180.01117.64
8.0.270.0060.01117.85
8.0.260.0200.01017.90
8.0.250.0170.01017.80
8.0.240.0210.00817.94
8.0.230.0170.00617.95
8.0.220.0150.00717.79
8.0.210.0230.00817.68
8.0.200.0200.01017.80
8.0.190.0230.00717.77
8.0.180.0130.00917.86
8.0.170.0200.00917.87
8.0.160.0050.01218.03
8.0.150.0230.00717.85
8.0.140.0180.00917.69
8.0.130.0220.00317.67
8.0.120.0230.00617.82
8.0.110.0200.00817.75
8.0.100.0170.00817.84
8.0.90.0220.00717.88
8.0.80.0230.00717.80
8.0.70.0080.00817.69
8.0.60.0240.00817.68
8.0.50.0270.00317.83
8.0.30.0080.01018.06
8.0.20.0140.00518.04
8.0.10.0230.00518.00
8.0.00.0230.00319.39
7.4.330.0140.00717.43
7.4.320.0260.00717.43
7.4.300.0280.00617.50
7.4.290.0320.00217.46
7.4.280.0250.00517.43
7.4.270.0230.00717.53
7.4.260.0280.00517.43
7.4.250.0260.00517.43
7.4.240.0250.00617.43
7.4.230.0230.00817.43
7.4.220.0210.01217.50
7.4.210.0280.00417.48
7.4.200.0270.00617.43
7.4.190.0250.00617.48
7.4.180.0250.00717.59
7.4.160.0230.01017.43
7.4.150.0260.00517.53
7.4.140.0280.00517.43
7.4.130.0310.00317.49
7.4.120.0260.00317.47
7.4.110.0230.00617.43
7.4.100.0270.00317.51
7.4.90.0220.00817.43
7.4.80.0200.01017.47
7.4.70.0160.01317.43
7.4.60.0220.00817.43
7.4.50.0280.00417.43
7.4.40.0260.00517.43
7.4.30.0240.00817.48
7.4.20.0260.00417.48
7.4.10.0180.00916.64
7.4.00.0140.01316.64
7.3.330.0270.00317.43
7.3.320.0260.00517.46
7.3.310.0250.00617.43
7.3.300.0230.00817.52
7.3.290.0210.00817.43
7.3.280.0220.00717.43
7.3.270.0230.00917.43
7.3.260.0200.01217.43
7.3.250.0220.00717.43
7.3.240.0210.01117.43
7.3.230.0190.00917.43
7.3.220.0260.00617.43
7.3.210.0260.00717.43
7.3.200.0260.00717.43
7.3.190.0230.00717.43
7.3.180.0290.00317.43
7.3.170.0220.00717.63
7.3.160.0270.00317.43
7.3.150.0260.00517.43
7.3.140.0210.01017.43
7.3.130.0220.00516.68
7.3.120.0190.00716.61
7.3.110.0160.00716.66
7.3.100.0180.00816.51
7.3.90.0180.00616.53
7.3.80.0170.00816.57
7.3.70.0150.00816.71
7.3.60.0190.00616.60
7.3.50.0190.00716.55
7.3.40.0200.00716.59
7.3.30.0190.00816.54
7.3.20.0250.00417.87
7.3.10.0200.00817.75
7.3.00.0210.00717.71
7.2.340.0270.00417.43
7.2.330.0230.01017.43
7.2.320.0280.00317.43
7.2.310.0190.01117.48
7.2.300.0240.00817.44
7.2.290.0240.00817.43
7.2.280.0220.00917.45
7.2.270.0170.01417.43
7.2.260.0190.01016.67
7.2.250.0210.00716.58
7.2.240.0210.00616.71
7.2.230.0160.01116.60
7.2.220.0150.01316.64
7.2.210.0220.00616.69
7.2.200.0240.00516.67
7.2.190.0200.00816.68
7.2.180.0200.00716.66
7.2.170.0200.00816.62
7.2.160.0220.00616.72
7.2.150.0270.01117.97
7.2.140.0230.00717.87
7.2.130.0210.00717.93
7.2.120.0220.00617.87
7.2.110.0180.00917.92
7.2.100.0120.00817.90
7.2.90.0170.01017.87
7.2.80.0180.00917.89
7.2.70.0170.01117.96
7.2.60.0200.00918.04
7.2.50.0190.00917.97
7.2.40.0450.00817.93
7.2.30.0520.00917.96
7.2.20.0600.00818.09
7.2.10.0500.01018.00
7.2.00.0500.00718.15
7.1.330.0170.00717.20
7.1.320.0140.00917.24
7.1.310.0160.00717.21
7.1.300.0170.00717.07
7.1.290.0180.00617.11
7.1.280.0210.00417.11
7.1.270.0220.00717.48
7.1.260.0190.00617.30
7.1.250.0150.01117.12
7.1.240.0180.00517.11
7.1.230.0180.00917.15
7.1.220.0180.00817.19
7.1.210.0200.00617.13
7.1.200.0170.00816.96
7.1.190.0180.00817.17
7.1.180.0200.00517.15
7.1.170.0160.00817.01
7.1.160.0460.01016.97
7.1.150.0400.00717.05
7.1.140.0480.01117.08
7.1.130.0500.00917.04
7.1.120.0500.01017.08
7.1.110.0550.01016.96
7.1.100.0540.00916.84
7.1.90.0650.00617.00
7.1.80.0680.00916.96
7.1.70.0560.00716.71
7.1.60.0960.00720.97
7.1.50.0670.00821.17
7.1.40.0650.01020.88
7.1.30.0560.00820.99
7.1.20.0590.00821.00
7.1.10.0620.00816.61
7.1.00.0480.00916.58
7.0.330.0160.00816.85
7.0.320.0160.00616.92
7.0.310.0190.00517.04
7.0.300.0140.00916.97
7.0.290.0200.00616.87
7.0.280.0190.00516.73
7.0.270.0180.00516.86
7.0.260.0180.00716.91
7.0.250.0200.00417.08
7.0.240.0150.00916.98
7.0.230.0170.00616.91
7.0.220.0160.00716.94
7.0.210.0230.00416.87
7.0.200.0130.01116.93
7.0.190.0200.00416.98
7.0.180.0180.00716.91
7.0.170.0290.00816.85
7.0.160.0200.00416.79
7.0.150.0190.00616.89
7.0.140.0190.00616.95
7.0.130.0180.00716.84
7.0.120.0190.00916.92
7.0.110.0180.00517.41
7.0.100.0170.00616.91
7.0.90.0120.00516.92
7.0.80.0180.00916.93
7.0.70.0210.00516.88
7.0.60.0090.01016.90
7.0.50.0090.00716.81
7.0.40.0190.00716.29
7.0.30.0100.00516.26
7.0.20.0140.01016.24
7.0.10.0160.00916.20
7.0.00.0180.00416.28
5.6.400.0170.00516.44
5.6.390.0170.00716.48
5.6.380.0170.00616.41
5.6.370.0140.00916.45
5.6.360.0190.00316.52
5.6.350.0160.00916.52
5.6.340.0150.00816.40
5.6.330.0160.00716.49
5.6.320.0160.00616.45
5.6.310.0140.01016.52
5.6.300.0170.00716.44
5.6.290.0140.01116.47
5.6.280.0190.00716.45
5.6.270.0140.01016.42
5.6.260.0200.00716.48
5.6.250.0200.00716.45
5.6.240.0160.01116.53
5.6.230.0200.00616.48
5.6.220.0180.01016.44
5.6.210.0210.00716.41
5.6.200.0210.00516.41
5.6.190.0190.00616.43
5.6.180.0110.01316.36
5.6.170.0170.00716.42
5.6.160.0160.00716.46
5.6.150.0180.00216.40
5.6.140.0190.00416.38
5.6.130.0160.00616.40
5.6.120.0160.00716.47
5.6.110.0130.00916.51
5.6.100.0180.00416.34
5.6.90.0160.00616.40
5.6.80.0180.00516.48
5.6.70.0190.00516.41
5.6.60.0150.00716.45
5.6.50.0140.00916.43
5.6.40.0160.00616.41
5.6.30.0190.00316.47
5.6.20.0170.00516.35
5.6.10.0160.00716.38
5.6.00.0120.01016.35
5.5.380.0220.00617.43
5.5.370.0180.01117.43
5.5.360.0240.00517.43
5.5.350.0260.00217.43
5.5.340.0270.00717.43
5.5.330.0290.00717.43
5.5.320.0280.00617.43
5.5.310.0260.00917.43
5.5.300.0270.00517.43
5.5.290.0200.00717.43
5.5.280.0230.00517.43
5.5.270.0200.00817.43
5.5.260.0220.00617.43
5.5.250.0240.00717.43
5.5.240.0240.00617.43
5.5.230.0250.00717.43
5.5.220.0240.00817.43
5.5.210.0210.00917.43
5.5.200.0170.01217.43
5.5.190.0200.00617.43
5.5.180.0210.00717.43
5.5.170.0240.00517.43
5.5.160.0200.00717.43
5.5.150.0230.00317.43
5.5.140.0160.00917.43
5.5.130.0170.01217.43
5.5.120.0200.00717.43
5.5.110.0250.00317.43
5.5.100.0190.00817.43
5.5.90.0270.00217.43
5.5.80.0160.01217.43
5.5.70.0180.01017.43
5.5.60.0200.00817.43
5.5.50.0270.00217.43
5.5.40.0200.00717.43
5.5.30.0220.00517.43
5.5.20.0210.00517.43
5.5.10.0240.00517.43
5.5.00.0220.00517.43
5.4.450.0180.00517.43
5.4.440.0180.00517.43
5.4.430.0170.00317.43
5.4.420.0150.00717.43
5.4.410.0210.00217.43
5.4.400.0200.00317.43
5.4.390.0210.00317.43
5.4.380.0160.00717.43
5.4.370.0150.00817.43
5.4.360.0210.00317.43
5.4.350.0190.00317.43
5.4.340.0190.00317.43
5.4.330.0200.00717.43
5.4.320.0170.00717.43
5.4.310.0190.00417.43
5.4.300.0190.00717.43
5.4.290.0170.00617.43
5.4.280.0170.00517.43
5.4.270.0180.00417.43
5.4.260.0210.00517.43
5.4.250.0240.00217.43
5.4.240.0210.00517.43
5.4.230.0230.00217.43
5.4.220.0160.00817.43
5.4.210.0210.00317.43
5.4.200.0220.00417.43
5.4.190.0190.00517.43
5.4.180.0190.00617.43
5.4.170.0190.00517.43
5.4.160.0170.00517.43
5.4.150.0230.00317.43
5.4.140.0160.00717.43
5.4.130.0200.00217.43
5.4.120.0220.00317.43
5.4.110.0200.00517.43
5.4.100.0160.00717.43
5.4.90.0230.00217.43
5.4.80.0130.00817.43
5.4.70.0180.00317.43
5.4.60.0080.00317.43
5.4.50.0040.00817.43
5.4.40.0100.00217.43
5.4.30.0070.00517.43
5.4.20.0050.00617.43
5.4.10.0060.00517.43
5.4.00.0090.00317.43
5.3.290.0070.00517.43
5.3.280.0050.00617.43
5.3.270.0040.00817.43
5.3.260.0060.00617.43
5.3.250.0040.00817.43
5.3.240.0090.00217.43
5.3.230.0030.00917.43
5.3.220.0070.00517.43
5.3.210.0090.00317.43
5.3.200.0040.00717.43
5.3.190.0070.00417.43
5.3.180.0050.00717.43
5.3.170.0050.00717.43
5.3.160.0070.00517.43
5.3.150.0030.00917.43
5.3.140.0060.00717.43
5.3.130.0100.00317.43
5.3.120.0060.00617.43
5.3.110.0080.00517.43
5.3.100.0060.00617.43
5.3.90.0070.00517.43
5.3.80.0090.00517.43
5.3.70.0080.00517.43
5.3.60.0030.00917.43
5.3.50.0060.00617.43
5.3.40.0090.00317.43
5.3.30.0080.00517.43
5.3.20.0070.00617.43
5.3.10.0070.00517.43
5.3.00.0090.00417.43
5.2.170.0090.00217.43
5.2.160.0070.00517.43
5.2.150.0040.00817.43
5.2.140.0120.00017.43
5.2.130.0090.00317.43
5.2.120.0060.00517.43
5.2.110.0080.00417.43
5.2.100.0040.00717.43
5.2.90.0040.00617.43
5.2.80.0090.00217.43
5.2.70.0020.00817.43
5.2.60.0080.00317.43
5.2.50.0090.00217.43
5.2.40.0080.00317.43
5.2.30.0100.00617.43
5.2.20.0120.00617.43
5.2.10.0160.00117.43
5.2.00.0120.00417.43
5.1.60.0110.00417.43
5.1.50.0120.00317.43
5.1.40.0120.00217.43
5.1.30.0120.00417.43
5.1.20.0130.00117.43
5.1.10.0120.00317.43
5.1.00.0130.00317.43
5.0.50.0100.00217.43
5.0.40.0140.00017.43
5.0.30.0070.00417.43
5.0.20.0080.00517.43
5.0.10.0090.00317.43
5.0.00.0060.00517.43
4.4.90.0080.00017.43
4.4.80.0070.00017.43
4.4.70.0080.00017.43
4.4.60.0030.00417.43
4.4.50.0070.00017.43
4.4.40.0060.00217.43
4.4.30.0050.00317.43
4.4.20.0070.00017.43
4.4.10.0070.00017.43
4.4.00.0070.00017.43
4.3.110.0030.00317.43
4.3.100.0060.00117.43
4.3.90.0060.00117.43
4.3.80.0050.00217.43
4.3.70.0080.00017.43
4.3.60.0060.00117.43
4.3.50.0070.00017.43
4.3.40.0060.00117.43
4.3.30.0040.00117.43
4.3.20.0060.00017.43
4.3.10.0050.00117.43
4.3.00.0070.00017.43

preferences:
29.04 ms | 403 KiB | 5 Q