3v4l.org

run code in 300+ PHP versions simultaneously
<?php abstract class Validate { public static $_Exceptions; public static function Run($o) { if($o->_HtmlOut == true) { $o->HtmlOutput(false); $Was_Html = true; } try { if(!is_array($o->_Fields)) throw new Exception("Os campos ainda não foram definidos."); foreach($o->_Fields as $Field) { if(is_empty($o->{$Field}) && in_array($Field, $o->_NotNull)); throw new Exception("O campo ". $Field ." da tabela ". $o->_Table ." não pode ser vazio."); switch(strtolower($o->_Meta[$Field])) { case('date') : if(!self::Date($o->{$Field}, Format::DATE)) self::$Errors[] = $Field; break; case('datetime') : if(!self::Date($o->{$Field}, Format::DATETIME)) self::$Errors[] = $Field; break; case('string') : if(!is_string($o->{$Field})) self::$Errors[] = $Field; break; case('int') : if(!is_int($o->{$Field})) if((int)($o->{$Field}) == $o->{$Field}) self::$Errors[] = $Field; break; } } } catch(Exception $e) { throw $e; } finally { if($Was_Html == true) $o->HtmlOutput(false); } if(is_array($Errors)) foreach($Errors as $Field) self::$_Exceptions[] = "Valor '". $o->{$Field} ."' para o campo ". $Field ."(".$o->_Meta[$Field].") da tabela ". $o->_Table ." é inválido"; return true; } public static function Date($data, Validate $type) { switch($type) { case(self::DATE) : if (date(DATE, strtotime($data)) == $data) return true; break; case(self::DATE_TIME) : if (date(DATE, strtotime($data)) == $data) return true; break; } return false; } public static function Throw() { $Exception = implode('<br />', self::$_Exceptions); unset(self::$_Exceptions); throw new Exception($Exception); } } ?>

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.60.0000.01518.43
8.3.50.0100.01021.14
8.3.40.0040.01118.73
8.3.30.0070.01020.17
8.3.20.0050.00220.37
8.3.10.0090.00022.10
8.3.00.0040.00422.51
8.2.180.0110.00716.38
8.2.170.0070.00722.96
8.2.160.0030.01022.10
8.2.150.0040.00424.18
8.2.140.0070.00724.66
8.2.130.0000.00826.16
8.2.120.0080.00020.83
8.2.110.0040.00422.20
8.2.100.0040.00817.66
8.2.90.0000.00817.78
8.2.80.0000.00817.97
8.2.70.0030.00517.38
8.2.60.0030.00617.80
8.2.50.0040.00418.07
8.2.40.0040.00419.76
8.2.30.0030.00519.46
8.2.20.0090.00017.59
8.2.10.0000.00717.66
8.2.00.0020.00517.61
8.1.280.0030.01325.92
8.1.270.0040.00423.99
8.1.260.0030.00526.35
8.1.250.0080.00028.09
8.1.240.0100.00720.57
8.1.230.0130.00020.91
8.1.220.0040.00417.74
8.1.210.0000.00818.91
8.1.200.0070.00317.23
8.1.190.0040.00417.28
8.1.180.0050.00318.10
8.1.170.0040.00418.46
8.1.160.0040.00418.84
8.1.150.0040.00418.55
8.1.140.0000.00717.43
8.1.130.0030.00517.85
8.1.120.0070.00017.43
8.1.110.0050.00317.24
8.1.100.0000.00817.29
8.1.90.0070.00017.26
8.1.80.0000.00817.30
8.1.70.0000.00817.37
8.1.60.0000.00917.36
8.1.50.0040.00417.42
8.1.40.0000.00717.43
8.1.30.0050.00317.50
8.1.20.0040.00417.58
8.1.10.0060.00317.45
8.1.00.0050.00317.37
8.0.300.0000.00719.98
8.0.290.0000.00817.28
8.0.280.0030.00318.28
8.0.270.0030.00317.18
8.0.260.0000.00816.75
8.0.250.0000.00716.79
8.0.240.0030.00616.90
8.0.230.0050.00216.75
8.0.220.0030.00516.82
8.0.210.0040.00416.67
8.0.200.0000.00616.77
8.0.190.0040.00416.91
8.0.180.0000.00816.75
8.0.170.0000.00716.85
8.0.160.0030.00316.68
8.0.150.0020.00516.75
8.0.140.0000.00716.80
8.0.130.0000.00513.20
8.0.120.0000.00816.86
8.0.110.0070.00016.76
8.0.100.0030.00316.87
8.0.90.0040.00416.92
8.0.80.0110.00616.75
8.0.70.0040.00416.84
8.0.60.0030.00516.75
8.0.50.0040.00416.66
8.0.30.0130.00916.79
8.0.20.0120.00617.40
8.0.10.0050.00317.00
8.0.00.0140.00716.57
7.4.330.0000.00715.00
7.4.320.0060.00016.52
7.4.300.0000.00616.41
7.4.290.0030.00316.47
7.4.280.0000.00616.46
7.4.270.0030.00316.47
7.4.260.0000.00613.09
7.4.250.0000.00816.38
7.4.240.0000.00716.47
7.4.230.0000.00716.53
7.4.220.0110.00716.55
7.4.210.0050.00916.47
7.4.200.0040.00416.50
7.4.190.0000.00716.36
7.4.160.0090.00616.34
7.4.150.0060.01317.40
7.4.140.0100.01217.86
7.4.130.0080.00816.38
7.4.120.0060.01116.43
7.4.110.0030.01416.36
7.4.100.0130.00616.20
7.4.90.0110.00716.55
7.4.80.0110.00619.39
7.4.70.0100.01016.42
7.4.60.0130.00416.35
7.4.50.0000.00916.41
7.4.40.0040.01422.77
7.4.30.0060.01616.38
7.4.00.0110.00814.80
7.3.330.0000.00513.29
7.3.320.0000.00512.99
7.3.310.0050.00316.12
7.3.300.0030.00316.23
7.3.290.0100.00316.16
7.3.280.0090.00816.22
7.3.270.0130.00517.40
7.3.260.0110.00716.41
7.3.250.0150.00416.49
7.3.240.0120.00616.10
7.3.230.0160.00016.39
7.3.210.0130.00316.29
7.3.200.0080.01619.39
7.3.190.0070.01016.18
7.3.180.0100.00616.42
7.3.170.0110.00516.27
7.3.160.0070.01016.31
7.3.120.0090.00814.90
7.3.110.0050.01414.66
7.3.100.0040.01114.74
7.3.90.0020.01414.72
7.3.80.0050.00714.85
7.3.70.0070.00514.74
7.3.60.0100.00514.63
7.3.50.0100.00314.56
7.3.40.0090.00514.59
7.3.30.0080.00514.76
7.3.20.0030.01016.33
7.3.10.0060.01016.56
7.3.00.0020.01316.38
7.2.330.0110.00616.66
7.2.320.0090.00916.62
7.2.310.0100.01016.40
7.2.300.0000.01616.42
7.2.290.0160.00016.45
7.2.250.0110.00714.94
7.2.240.0070.01414.86
7.2.230.0030.00914.92
7.2.220.0050.00914.93
7.2.210.0080.00614.82
7.2.200.0050.01014.87
7.2.190.0070.00814.95
7.2.180.0070.00814.71
7.2.170.0070.00614.91
7.2.60.0100.00316.59
7.2.00.0040.00819.18
7.1.330.0080.00515.61
7.1.320.0020.01215.59
7.1.310.0020.00915.41
7.1.300.0040.01115.63
7.1.290.0070.00715.58
7.1.280.0040.00815.51
7.1.270.0040.00915.61
7.1.260.0060.00515.55
7.1.200.0040.00815.71
7.1.100.0040.01117.84
7.1.70.0030.00516.95
7.1.60.0060.00619.32
7.1.50.0100.01016.79
7.1.00.0030.07322.33
7.0.200.0030.00616.32
7.0.140.0070.07022.07
7.0.100.0170.08019.96
7.0.90.0100.07720.04
7.0.80.0130.08019.92
7.0.70.0170.07019.98
7.0.60.0170.07719.85
7.0.50.0100.07020.40
7.0.40.0000.09320.08
7.0.30.0100.05320.11
7.0.20.0030.05320.10
7.0.10.0100.05019.95
7.0.00.0100.08320.17
5.6.280.0030.07321.12
5.6.250.0130.07320.62
5.6.240.0130.06720.53
5.6.230.0130.06720.73
5.6.220.0070.07720.60
5.6.210.0030.05720.68
5.6.200.0100.07721.14
5.6.190.0130.08321.07
5.6.180.0100.05721.10
5.6.170.0100.07721.05
5.6.160.0070.05021.15
5.6.150.0070.08020.96
5.6.140.0070.05721.05
5.6.130.0200.06321.15
5.6.120.0170.07021.05
5.6.110.0170.07321.04
5.6.100.0100.08021.14
5.6.90.0100.08721.07
5.6.80.0170.06320.56
5.6.70.0100.07020.39
5.6.60.0170.07320.34
5.6.50.0030.08320.35
5.6.40.0070.08020.30
5.6.30.0130.07720.39
5.6.20.0030.05020.45
5.6.10.0030.08720.39
5.6.00.0100.07720.39
5.5.380.0100.06720.37
5.5.370.0130.07020.46
5.5.360.0100.07720.43
5.5.350.0170.07320.39
5.5.340.0030.07720.83
5.5.330.0030.08720.85
5.5.320.0100.07720.79
5.5.310.0000.08720.95
5.5.300.0130.07720.79
5.5.290.0070.07720.90
5.5.280.0070.04720.64
5.5.270.0070.07720.80
5.5.260.0030.05320.80
5.5.250.0070.09020.65
5.5.240.0130.04320.05
5.5.230.0030.05320.30
5.5.220.0070.08020.28
5.5.210.0070.05020.21
5.5.200.0100.08020.18
5.5.190.0030.07320.16
5.5.180.0070.06720.19
5.5.160.0130.06320.01
5.5.150.0070.06720.16
5.5.140.0070.07020.20
5.5.130.0000.06020.17
5.5.120.0030.08020.27
5.5.110.0070.06720.27
5.5.100.0130.07320.07
5.5.90.0070.07720.06
5.5.80.0100.08019.99
5.5.70.0100.07720.17
5.5.60.0100.07720.13
5.5.50.0100.05720.05
5.5.40.0130.03320.14
5.5.30.0100.07020.09
5.5.20.0130.07020.06
5.5.10.0100.04020.06
5.5.00.0030.08720.07
5.4.450.0070.07719.51
5.4.440.0070.08019.54
5.4.430.0130.07019.17
5.4.420.0100.04719.17
5.4.410.0130.06719.23
5.4.400.0170.06719.21
5.4.390.0070.08019.05
5.4.380.0130.06719.05
5.4.370.0100.07719.13
5.4.360.0170.03719.09
5.4.350.0030.07718.85
5.4.340.0200.05319.23
5.4.320.0030.06019.03
5.4.310.0000.08719.21
5.4.300.0070.05718.84
5.4.290.0000.08019.00
5.4.280.0030.05719.14
5.4.270.0130.07019.04
5.4.260.0070.07318.85
5.4.250.0130.07019.20
5.4.240.0070.07019.09
5.4.230.0170.06319.11
5.4.220.0070.08018.84
5.4.210.0130.06018.94
5.4.200.0030.06719.03
5.4.190.0030.06019.15
5.4.180.0130.05019.22
5.4.170.0030.04318.93
5.4.160.0030.08719.18
5.4.150.0030.05019.22
5.4.140.0030.04316.36
5.4.130.0100.06716.34
5.4.120.0070.07316.15
5.4.110.0100.06716.45
5.4.100.0030.07316.49
5.4.90.0100.07316.39
5.4.80.0130.06316.41
5.4.70.0100.03716.31
5.4.60.0030.03716.36
5.4.50.0100.06016.43
5.4.40.0030.03716.52
5.4.30.0070.04016.47
5.4.20.0030.04016.41
5.4.10.0100.03316.44
5.4.00.0000.03715.89
5.3.290.0030.07714.68
5.3.280.0070.07314.55
5.3.270.0070.07314.68
5.3.260.0070.05314.66
5.3.250.0070.07714.57
5.3.240.0200.06714.74
5.3.230.0070.07714.62
5.3.220.0100.06014.58
5.3.210.0130.05714.65
5.3.200.0070.08014.64
5.3.190.0070.04014.55
5.3.180.0070.07314.64
5.3.170.0130.05714.55
5.3.160.0000.04314.70
5.3.150.0030.03714.69
5.3.140.0100.04014.63
5.3.130.0000.04014.71
5.3.120.0000.04314.54
5.3.110.0030.03714.63
5.3.100.0000.05014.16
5.3.90.0070.03314.20
5.3.80.0070.02714.10
5.3.70.0070.03314.10
5.3.60.0100.03014.13
5.3.50.0000.03313.96
5.3.40.0030.03314.02
5.3.30.0100.06314.04
5.3.20.0100.02713.82
5.3.10.0030.06713.58
5.3.00.0100.02713.64
5.2.170.0030.04011.26
5.2.160.0000.07011.07
5.2.150.0070.02311.20
5.2.140.0070.02711.08
5.2.130.0030.05711.24
5.2.120.0130.02311.15
5.2.110.0030.02711.25
5.2.100.0130.05311.16
5.2.90.0070.04311.26
5.2.80.0000.05311.22
5.2.70.0000.03711.14
5.2.60.0030.04011.13
5.2.50.0030.04011.12
5.2.40.0100.04011.07
5.2.30.0030.04711.00
5.2.20.0030.03010.93
5.2.10.0000.04710.82
5.2.00.0030.05310.88
5.1.60.0030.0309.86
5.1.50.0030.03710.07
5.1.40.0000.02710.11
5.1.30.0000.03310.27
5.1.20.0000.03010.50
5.1.10.0000.03010.21
5.1.00.0000.04010.10
5.0.50.0070.0178.41
5.0.40.0030.0178.54
5.0.30.0030.0378.33
5.0.20.0000.0238.29
5.0.10.0030.0278.27
5.0.00.0000.0308.07
4.4.90.0000.0137.03
4.4.80.0030.0237.03
4.4.70.0000.0177.03
4.4.60.0030.0177.03
4.4.50.0000.0277.03
4.4.40.0030.0307.03
4.4.30.0000.0237.03
4.4.20.0030.0137.03
4.4.10.0000.0177.03
4.4.00.0030.0237.03
4.3.110.0000.0277.03
4.3.100.0000.0177.03
4.3.90.0030.0137.03
4.3.80.0030.0237.03
4.3.70.0000.0177.03
4.3.60.0000.0237.03
4.3.50.0030.0137.03
4.3.40.0000.0237.03
4.3.30.0000.0177.03
4.3.20.0000.0177.03
4.3.10.0000.0177.03
4.3.00.0000.0207.03

preferences:
52.02 ms | 401 KiB | 5 Q