3v4l.org

run code in 300+ PHP versions simultaneously
<?php if ( !function_exists('is_str_contain')) { function is_str_contain($string, $keyword){ if(empty($string) || empty($keyword)) return false; $keyword_first_char = $keyword[0]; $keyword_length = strlen($keyword); $string_length = strlen($string); if( $string_length < $keyword_length ) return false; if( $string_length == $keyword_length ){ if($string == $keyword) return true; else return false; } if($keyword_length > 1){ for( $i=0; $i < $string_length; $i++){ //check if keyword's first char == string's first char if( $keyword_first_char == $string[$i] ){ $match = 1; for($j = 1; $j < $keyword_length; $j++){ if( ($i+$j < $string_length) && $keyword[$j] == $string[$i+$j] ){ $match++; } } if($match == $keyword_length){ return true; } } } } if($keyword_length == 1){ for( $i=0; $i < $string_length; $i++){ //check if keyword's first char == string's first char if( $keyword_first_char == $string[$i] ){ return true; } } } return false; } } var_dump(is_str_contain("test", "t")); //true var_dump(is_str_contain("test", "")); //false var_dump(is_str_contain("test", "test")); //true var_dump(is_str_contain("test", "testa")); //flase var_dump(is_str_contain("a----z", "a")); //true var_dump(is_str_contain("a----z", "z")); //true

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.0120.00316.63
8.3.50.0020.01321.91
8.3.40.0090.00618.65
8.3.30.0110.00419.19
8.3.20.0070.00020.16
8.3.10.0000.00823.39
8.3.00.0000.00820.77
8.2.180.0110.00416.75
8.2.170.0140.00722.96
8.2.160.0100.00320.44
8.2.150.0060.00324.18
8.2.140.0050.00324.66
8.2.130.0070.00026.16
8.2.120.0000.00819.36
8.2.110.0070.00322.11
8.2.100.0080.00320.38
8.2.90.0000.01219.30
8.2.80.0040.00417.97
8.2.70.0050.00317.63
8.2.60.0060.00617.93
8.2.50.0030.00618.07
8.2.40.0030.00620.07
8.2.30.0040.00418.41
8.2.20.0000.00817.73
8.2.10.0000.00718.08
8.2.00.0040.00417.77
8.1.280.0130.00725.92
8.1.270.0040.00423.93
8.1.260.0050.00226.35
8.1.250.0040.00428.09
8.1.240.0000.00922.14
8.1.230.0080.00319.02
8.1.220.0000.00817.79
8.1.210.0080.00018.77
8.1.200.0030.00617.35
8.1.190.0000.00817.25
8.1.180.0000.00718.10
8.1.170.0000.00918.64
8.1.160.0040.00421.96
8.1.150.0000.00718.59
8.1.140.0040.00417.47
8.1.130.0030.00317.91
8.1.120.0050.00217.54
8.1.110.0030.00517.52
8.1.100.0000.00817.39
8.1.90.0040.00417.51
8.1.80.0030.00317.55
8.1.70.0000.00717.43
8.1.60.0040.00417.65
8.1.50.0040.00417.41
8.1.40.0070.00017.60
8.1.30.0080.00017.60
8.1.20.0040.00417.67
8.1.10.0040.00417.61
8.1.00.0000.00717.57
8.0.300.0040.00418.77
8.0.290.0060.00316.75
8.0.280.0050.00318.47
8.0.270.0000.00817.19
8.0.260.0000.00817.29
8.0.250.0030.00316.98
8.0.240.0040.00416.98
8.0.230.0070.00017.03
8.0.220.0030.00316.90
8.0.210.0030.00316.88
8.0.200.0070.00016.85
8.0.190.0000.00716.94
8.0.180.0040.00416.84
8.0.170.0040.00416.96
8.0.160.0000.00716.96
8.0.150.0030.00316.89
8.0.140.0000.00916.92
8.0.130.0000.00613.35
8.0.120.0050.00316.86
8.0.110.0000.00716.81
8.0.100.0080.00016.92
8.0.90.0050.00516.92
8.0.80.0000.01616.88
8.0.70.0040.00416.86
8.0.60.0040.00416.81
8.0.50.0000.00716.80
8.0.30.0140.00817.12
8.0.20.0090.01017.40
8.0.10.0070.00017.03
8.0.00.0080.00916.80
7.4.330.0000.00515.09
7.4.320.0030.00316.56
7.4.300.0060.00016.68
7.4.290.0030.00316.43
7.4.280.0030.00316.62
7.4.270.0000.00716.66
7.4.260.0050.00516.54
7.4.250.0050.00316.50
7.4.240.0010.00616.68
7.4.230.0030.00316.54
7.4.220.0030.01416.55
7.4.210.0140.00016.61
7.4.200.0030.00316.54
7.4.160.0060.00916.50
7.4.150.0090.01617.40
7.4.140.0070.01117.86
7.4.130.0090.00816.56
7.4.120.0080.00916.63
7.4.110.0070.01116.50
7.4.100.0130.00416.36
7.4.90.0120.01216.78
7.4.80.0130.01019.39
7.4.70.0090.01216.41
7.4.60.0100.01516.47
7.4.50.0000.00416.74
7.4.40.0030.01316.39
7.4.30.0110.00616.58
7.4.00.0100.00314.91
7.3.330.0000.00613.44
7.3.320.0030.00313.14
7.3.310.0000.00716.39
7.3.300.0060.00016.34
7.3.290.0030.01616.38
7.3.280.0130.00716.43
7.3.270.0110.00717.40
7.3.260.0040.01116.36
7.3.250.0100.00916.32
7.3.240.0110.01116.64
7.3.230.0100.00716.52
7.3.210.0120.00916.45
7.3.200.0080.00819.39
7.3.190.0150.00316.71
7.3.180.0090.00616.50
7.3.170.0080.00816.62
7.3.160.0100.00716.38
7.3.120.0000.01414.91
7.2.330.0070.01016.50
7.2.320.0070.01116.92
7.2.310.0110.01116.83
7.2.300.0050.01116.51
7.2.290.0050.01016.81
7.2.60.0060.00916.86
7.1.200.0060.00615.52
7.1.70.0040.00817.01
7.1.60.0090.01619.70
7.1.50.0030.01417.03
7.1.00.0030.07722.45
7.0.200.0070.00316.86
7.0.140.0100.06322.01
7.0.100.0130.07320.04
7.0.90.0100.04720.01
7.0.80.0100.08019.93
7.0.70.0070.06019.91
7.0.60.0070.07719.76
7.0.50.0200.06720.25
7.0.40.0030.05020.18
7.0.30.0100.08020.06
7.0.20.0170.06320.01
7.0.10.0070.08320.10
7.0.00.0170.07320.03
5.6.280.0030.07320.92
5.6.250.0030.09020.52
5.6.240.0000.08720.76
5.6.230.0030.07020.59
5.6.220.0130.07720.65
5.6.210.0030.08720.74
5.6.200.0030.08321.03
5.6.190.0130.07721.06
5.6.180.0030.07321.08
5.6.170.0130.06320.95
5.6.160.0130.07321.03
5.6.150.0100.08020.98
5.6.140.0100.04721.12
5.6.130.0100.07721.12
5.6.120.0130.07721.07
5.6.110.0070.08321.08
5.6.100.0170.04321.11
5.6.90.0130.07320.95
5.6.80.0170.06720.33
5.6.70.0100.07320.29
5.6.60.0100.06720.43
5.6.50.0100.07720.34
5.6.40.0130.06720.47
5.6.30.0100.07720.45
5.6.20.0100.05320.54
5.6.10.0100.07020.48
5.6.00.0100.08020.41
5.5.380.0070.04720.39
5.5.370.0170.06320.48
5.5.360.0170.06720.51
5.5.350.0130.07020.36
5.5.340.0170.07320.89
5.5.330.0070.08020.81
5.5.320.0130.03720.79
5.5.310.0030.08320.81
5.5.300.0100.07720.77
5.5.290.0100.08320.77
5.5.280.0100.07720.84
5.5.270.0070.08020.80
5.5.260.0130.08020.84
5.5.250.0170.07320.63
5.5.240.0100.07320.20
5.5.230.0100.08020.30
5.5.220.0170.06020.22
5.5.210.0030.08020.15
5.5.200.0170.06320.27
5.5.190.0030.08720.16
5.5.180.0070.08320.14
5.5.160.0100.06720.09
5.5.150.0100.07720.09
5.5.140.0070.07720.12
5.5.130.0170.07020.27
5.5.120.0100.07320.23
5.5.110.0070.07720.23
5.5.100.0100.07320.17
5.5.90.0030.05020.07
5.5.80.0070.07720.13
5.5.70.0200.06320.16
5.5.60.0200.06320.05
5.5.50.0030.05320.07
5.5.40.0100.07720.01
5.5.30.0170.07319.97
5.5.20.0100.07720.08
5.5.10.0030.05319.97
5.5.00.0030.08720.06
5.4.450.0130.07719.49
5.4.440.0170.06319.49
5.4.430.0100.07019.50
5.4.420.0130.07019.20
5.4.410.0170.04319.23
5.4.400.0100.03719.23
5.4.390.0130.07019.04
5.4.380.0100.06018.88
5.4.370.0070.08019.04
5.4.360.0070.04319.09
5.4.350.0100.07319.03
5.4.340.0030.08019.22
5.4.320.0100.07019.18
5.4.310.0100.06719.13
5.4.300.0130.06319.12
5.4.290.0070.08019.09
5.4.280.0030.08018.95
5.4.270.0130.06319.22
5.4.260.0070.07319.00
5.4.250.0030.08018.90
5.4.240.0100.07018.87
5.4.230.0100.05718.89
5.4.220.0000.08019.04
5.4.210.0130.06719.04
5.4.200.0030.04719.12
5.4.190.0000.08719.09
5.4.180.0070.07319.18
5.4.170.0230.06019.02
5.4.160.0130.06319.01
5.4.150.0130.07319.19
5.4.140.0070.07316.40
5.4.130.0030.07716.44
5.4.120.0030.07016.44
5.4.110.0170.06716.46
5.4.100.0030.07316.33
5.4.90.0070.07716.32
5.4.80.0170.06016.36
5.4.70.0100.07016.34
5.4.60.0100.06716.36
5.4.50.0070.06716.30
5.4.40.0100.06716.38
5.4.30.0000.07316.40
5.4.20.0070.07016.41
5.4.10.0200.05716.29
5.4.00.0100.07015.86
5.3.290.0070.08014.75
5.3.280.0070.07314.71
5.3.270.0030.08314.58
5.3.260.0070.08014.63
5.3.250.0100.06714.75
5.3.240.0100.07314.63
5.3.230.0100.06714.67
5.3.220.0030.08014.57
5.3.210.0030.07314.56
5.3.200.0100.05714.57
5.3.190.0030.07314.72
5.3.180.0030.08014.59
5.3.170.0070.07314.67
5.3.160.0130.07314.71
5.3.150.0170.06714.56
5.3.140.0070.07314.66
5.3.130.0000.08014.57
5.3.120.0100.07014.54
5.3.110.0100.04714.55
5.3.100.0030.07014.17
5.3.90.0030.06014.06
5.3.80.0130.07014.02
5.3.70.0100.07014.09
5.3.60.0170.06014.08
5.3.50.0070.07314.03
5.3.40.0130.06014.00
5.3.30.0100.07013.86
5.3.20.0130.06013.60
5.3.10.0130.05713.73
5.3.00.0070.07013.63
5.2.170.0030.03711.09
5.2.160.0000.06311.14
5.2.150.0000.03711.28
5.2.140.0000.07011.16
5.2.130.0070.06011.13
5.2.120.0030.06011.09
5.2.110.0070.06011.25
5.2.100.0070.06011.09
5.2.90.0030.05711.26
5.2.80.0030.06711.09
5.2.70.0070.06011.10
5.2.60.0030.06311.11
5.2.50.0030.06311.13
5.2.40.0030.05711.09
5.2.30.0130.05311.09
5.2.20.0030.05711.09
5.2.10.0100.05311.09
5.2.00.0100.03311.09
5.1.60.0070.05011.09
5.1.50.0030.05711.09
5.1.40.0130.04311.09
5.1.30.0000.06011.09
5.1.20.0030.05711.09
5.1.10.0000.06011.09
5.1.00.0100.05311.09
5.0.50.0070.04311.09
5.0.40.0100.04011.09
5.0.30.0070.06311.09
5.0.20.0030.04311.09
5.0.10.0000.03011.09
5.0.00.0070.06011.09
4.4.90.0070.03011.09
4.4.80.0000.02711.09
4.4.70.0000.03311.09
4.4.60.0000.03311.09
4.4.50.0000.03711.09
4.4.40.0030.05011.09
4.4.30.0030.03311.09
4.4.20.0030.03711.09
4.4.10.0030.03011.09
4.4.00.0070.05011.09
4.3.110.0000.02711.09
4.3.100.0030.02311.09
4.3.90.0030.03011.09
4.3.80.0030.05011.09
4.3.70.0030.03311.09
4.3.60.0070.03011.09
4.3.50.0000.03711.09
4.3.40.0000.05011.09
4.3.30.0000.03011.09
4.3.20.0030.02311.09
4.3.10.0100.02711.09
4.3.00.0000.03311.09

preferences:
37.76 ms | 404 KiB | 6 Q