3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MVCFramework { var $url = ''; function __construct($url) { $this->url = $url; //HTTP_REQUEST URL $this->run(); } function run() { if ($route = Routes::getRoute($this->url)) { list($controller, $action) = $route; $controllerObj = new $$controller; $controllerObj->$$action(); //template } else { print_r('404'); } } } class Routes { static $routes = array(); static function add($route, $controller, $action) { self::$routes[$route] = array($controller.'Controller', $action); } static function getRoutes() { return self::$routes; } static function getRoute($url) { return self::$routes[$url]; } } abstract class Model { // connect to DB and etc. } // controllers/BookController.php class BooksController { function index() { $books = Book::all(); } function show() { $id = 1; $books = Book::find(1); } } // models/Book.php class Book { static function all() { $books = array('Book', 'Book', 'Book'); return $books; } static function find() { $book = 'Book'; return $book; } } Routes::add('/books', 'Books', 'index'); Routes::add('/books/:id', 'Books', 'show'); $url = '/books'; new MVCFramework($url);

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.0070.01018.43
8.3.50.0090.01022.18
8.3.40.0110.00418.79
8.3.30.0090.00619.04
8.3.20.0060.00320.34
8.3.10.0050.00523.56
8.3.00.0080.00019.20
8.2.180.0040.01116.75
8.2.170.0150.00322.96
8.2.160.0100.00320.47
8.2.150.0080.00024.18
8.2.140.0040.00424.66
8.2.130.0040.00426.16
8.2.120.0040.00420.82
8.2.110.0060.00320.47
8.2.100.0030.00917.85
8.2.90.0040.00418.16
8.2.80.0000.00817.97
8.2.70.0000.00917.75
8.2.60.0030.00617.93
8.2.50.0110.00018.07
8.2.40.0000.00819.95
8.2.30.0000.00718.35
8.2.20.0040.00417.84
8.2.10.0070.00018.07
8.2.00.0000.00817.72
8.1.280.0120.00925.92
8.1.270.0030.00623.96
8.1.260.0050.00326.35
8.1.250.0000.00728.09
8.1.240.0060.00322.19
8.1.230.0060.00620.89
8.1.220.0030.00517.76
8.1.210.0030.00519.06
8.1.200.0090.00017.23
8.1.190.0040.00417.23
8.1.180.0040.00418.10
8.1.170.0080.00018.65
8.1.160.0070.00022.05
8.1.150.0020.00518.63
8.1.140.0040.00417.43
8.1.130.0000.00717.80
8.1.120.0070.00017.35
8.1.110.0070.00417.44
8.1.100.0040.00417.39
8.1.90.0040.00417.49
8.1.80.0040.00417.43
8.1.70.0000.00717.43
8.1.60.0040.00417.65
8.1.50.0080.00017.57
8.1.40.0030.00517.55
8.1.30.0040.00417.66
8.1.20.0030.00617.65
8.1.10.0000.00717.51
8.1.00.0000.00817.51
8.0.300.0040.00420.12
8.0.290.0040.00417.18
8.0.280.0070.00018.53
8.0.270.0040.00417.35
8.0.260.0030.00317.21
8.0.250.0000.00717.01
8.0.240.0000.00717.05
8.0.230.0000.00716.98
8.0.220.0030.00317.01
8.0.210.0070.00017.03
8.0.200.0030.00317.04
8.0.190.0030.00617.07
8.0.180.0050.00217.00
8.0.170.0070.00017.02
8.0.160.0000.00716.95
8.0.150.0040.00416.96
8.0.140.0000.00816.88
8.0.130.0060.00013.41
8.0.120.0040.00417.01
8.0.110.0040.00417.00
8.0.100.0040.00417.03
8.0.90.0000.00816.86
8.0.80.0060.00916.98
8.0.70.0040.00416.80
8.0.60.0070.00017.01
8.0.50.0020.00516.88
8.0.30.0080.01117.06
8.0.20.0070.01217.40
8.0.10.0050.00317.14
8.0.00.0170.00216.95
7.4.330.0000.00515.00
7.4.320.0000.00616.69
7.4.300.0050.00216.45
7.4.290.0000.00716.61
7.4.280.0040.00416.61
7.4.270.0080.00016.61
7.4.260.0000.00716.46
7.4.250.0040.00416.52
7.4.240.0030.00516.59
7.4.230.0000.00716.62
7.4.220.0100.00916.68
7.4.210.0150.00616.57
7.4.200.0030.00316.46
7.4.190.0000.00716.61
7.4.160.0130.00316.76
7.4.150.0090.00917.40
7.4.140.0080.01417.86
7.4.130.0110.00616.57
7.4.120.0090.00816.46
7.4.110.0070.01016.66
7.4.100.0060.01616.71
7.4.90.0090.01216.49
7.4.80.0100.00719.39
7.4.70.0120.00616.59
7.4.60.0070.01016.48
7.4.50.0040.00416.63
7.4.40.0070.01116.46
7.4.30.0080.00816.50
7.4.00.0000.01315.02
7.3.330.0070.00013.28
7.3.320.0000.00513.37
7.3.310.0030.00316.48
7.3.300.0030.00316.34
7.3.290.0050.01016.44
7.3.280.0090.00716.45
7.3.270.0060.00917.40
7.3.260.0060.01216.57
7.3.250.0150.00616.51
7.3.240.0140.00316.45
7.3.230.0040.01316.44
7.3.210.0100.00716.38
7.3.200.0030.01419.39
7.3.190.0090.01216.39
7.3.180.0030.01316.49
7.3.170.0060.01016.57
7.3.160.0070.01016.58
7.3.120.0070.00714.84
7.3.10.0000.01016.52
7.3.00.0060.00916.74
7.2.330.0100.01016.59
7.2.320.0120.00616.76
7.2.310.0040.01216.62
7.2.300.0030.01416.84
7.2.290.0140.00316.69
7.2.130.0100.00316.93
7.2.120.0030.01016.77
7.2.110.0000.00816.79
7.2.100.0100.00716.78
7.2.90.0000.00817.10
7.2.80.0080.00416.93
7.2.70.0070.00716.72
7.2.60.0050.00816.80
7.2.50.0040.00716.61
7.2.40.0030.00717.11
7.2.30.0060.00616.88
7.2.20.0080.00316.86
7.2.10.0000.01116.96
7.2.00.0030.00818.24
7.1.250.0000.01515.59
7.1.200.0070.00415.76
7.1.100.0040.00418.31
7.1.70.0030.00817.25
7.1.60.0060.01319.70
7.1.50.0090.01317.06
7.1.00.0030.07722.31
7.0.200.0030.01016.73
7.0.140.0070.06722.02
7.0.100.0100.08720.02
7.0.90.0130.07719.89
7.0.80.0070.08719.93
7.0.70.0070.07719.95
7.0.60.0100.08019.98
7.0.50.0200.06020.34
7.0.40.0070.08720.13
7.0.30.0030.05320.04
7.0.20.0030.07020.00
7.0.10.0130.07720.17
7.0.00.0070.08020.17
5.6.280.0070.07020.93
5.6.250.0100.08320.79
5.6.240.0100.08020.62
5.6.230.0130.07720.70
5.6.220.0030.07720.57
5.6.210.0030.08020.77
5.6.200.0100.08320.96
5.6.190.0130.06720.98
5.6.180.0070.04721.08
5.6.170.0100.08321.15
5.6.160.0070.09020.97
5.6.150.0070.05021.07
5.6.140.0100.08320.95
5.6.130.0130.07721.13
5.6.120.0130.08021.00
5.6.110.0200.06721.06
5.6.100.0030.04721.08
5.6.90.0030.04321.02
5.6.80.0030.04020.49
5.6.70.0000.04320.41
5.6.60.0030.04020.30
5.6.50.0070.03720.43
5.6.40.0030.05320.45
5.6.30.0030.06720.40
5.6.20.0000.04320.43
5.6.10.0100.03720.39
5.6.00.0030.07020.39
5.5.380.0100.06720.43
5.5.370.0070.07720.37
5.5.360.0100.07020.52
5.5.350.0000.04720.45
5.5.340.0000.04720.86
5.5.330.0170.07020.91
5.5.320.0130.07320.78
5.5.310.0130.06020.66
5.5.300.0200.04320.88
5.5.290.0070.08720.66
5.5.280.0100.07020.94
5.5.270.0070.06720.65
5.5.260.0070.04020.91
5.5.250.0000.04320.46
5.5.240.0070.03720.20
5.5.230.0070.04020.28
5.5.220.0100.03320.19
5.5.210.0100.05720.18
5.5.200.0070.03320.21
5.5.190.0030.04020.18
5.5.180.0130.07320.01
5.5.160.0100.03320.13
5.5.150.0030.04020.27
5.5.140.0030.04020.10
5.5.130.0070.03320.30
5.5.120.0070.05320.29
5.5.110.0000.04320.01
5.5.100.0070.03720.09
5.5.90.0070.05320.18
5.5.80.0070.03720.09
5.5.70.0070.05320.14
5.5.60.0000.04020.18
5.5.50.0070.03320.04
5.5.40.0070.03319.98
5.5.30.0030.05320.16
5.5.20.0030.04020.17
5.5.10.0070.06320.07
5.5.00.0030.04019.96
5.4.450.0100.06319.37
5.4.440.0070.08319.35
5.4.430.0030.07019.50
5.4.420.0070.03719.45
5.4.410.0000.04719.43
5.4.400.0000.03719.13
5.4.390.0070.03719.23
5.4.380.0000.04019.13
5.4.370.0030.04019.20
5.4.360.0070.03718.90
5.4.350.0070.04019.16
5.4.340.0000.04719.14
5.4.320.0100.04018.87
5.4.310.0070.03319.04
5.4.300.0000.04019.08
5.4.290.0000.04019.04
5.4.280.0000.06319.12
5.4.270.0030.05018.87
5.4.260.0100.03319.25
5.4.250.0030.03719.21
5.4.240.0070.03019.20
5.4.230.0000.04719.02
5.4.220.0000.04719.11
5.4.210.0030.04018.94
5.4.200.0100.03318.94
5.4.190.0000.04019.11
5.4.180.0070.03319.02
5.4.170.0000.05719.03
5.4.160.0070.04019.02
5.4.150.0000.08719.19
5.4.140.0070.07016.46
5.4.130.0030.07016.38
5.4.120.0200.06716.45
5.4.110.0170.05716.42
5.4.100.0100.07316.38
5.4.90.0030.03716.57
5.4.80.0170.06716.55
5.4.70.0000.07016.52
5.4.60.0030.07016.46
5.4.50.0070.05016.45
5.4.40.0130.07016.42
5.4.30.0100.07316.36
5.4.20.0030.07316.42
5.4.10.0100.07316.38
5.4.00.0000.07715.86
5.3.290.0030.05314.83
5.3.280.0000.04014.54
5.3.270.0030.04014.75
5.3.260.0030.07314.55
5.3.250.0030.06314.55
5.3.240.0100.07714.74
5.3.230.0130.07014.59
5.3.220.0030.06314.63
5.3.210.0130.06314.59
5.3.200.0130.06714.52
5.3.190.0100.05714.70
5.3.180.0100.06714.50
5.3.170.0070.05314.59
5.3.160.0100.06714.57
5.3.150.0130.06714.57
5.3.140.0170.07014.60
5.3.130.0100.07314.57
5.3.120.0170.07714.63
5.3.110.0030.08714.58
5.3.100.0170.06314.09
5.3.90.0100.07014.13
5.3.80.0130.06713.97
5.3.70.0070.08013.99
5.3.60.0130.03314.02
5.3.50.0030.07014.08
5.3.40.0100.07314.11
5.3.30.0130.06713.86
5.3.20.0030.07013.86
5.3.10.0070.06313.78
5.3.00.0130.06313.59
5.2.170.0030.05011.55
5.2.160.0070.05711.55
5.2.150.0100.05711.55
5.2.140.0000.05711.55
5.2.130.0070.06011.55
5.2.120.0000.05311.55
5.2.110.0070.06011.55
5.2.100.0130.05311.55
5.2.90.0030.06011.55
5.2.80.0070.05011.55
5.2.70.0070.06311.55
5.2.60.0070.06011.55
5.2.50.0000.05711.55
5.2.40.0070.05711.55
5.2.30.0000.06711.55
5.2.20.0070.03311.55
5.2.10.0070.05711.55
5.2.00.0030.06011.55
5.1.60.0000.05711.55
5.1.50.0130.03711.55
5.1.40.0070.04311.55
5.1.30.0070.05311.55
5.1.20.0070.05711.55
5.1.10.0070.05711.55
5.1.00.0030.06011.55
5.0.50.0030.04711.55
5.0.40.0000.04711.55
5.0.30.0070.07011.55
5.0.20.0100.02711.55
5.0.10.0030.03711.55
5.0.00.0030.06711.55
4.4.90.0070.01311.55
4.4.80.0030.03311.55
4.4.70.0000.02011.55
4.4.60.0000.03711.55
4.4.50.0070.01711.55
4.4.40.0030.05311.55
4.4.30.0070.03311.55
4.4.20.0000.02711.55
4.4.10.0000.03011.55
4.4.00.0000.05711.55
4.3.110.0070.03011.55
4.3.100.0030.03311.55
4.3.90.0030.03311.55
4.3.80.0000.04011.55
4.3.70.0000.03711.55
4.3.60.0030.03311.55
4.3.50.0030.03311.55
4.3.40.0030.04011.55
4.3.30.0000.03311.55
4.3.20.0000.04011.55
4.3.10.0000.02311.55
4.3.00.0000.02711.55

preferences:
53.68 ms | 401 KiB | 5 Q