3v4l.org

run code in 300+ PHP versions simultaneously
<?php extract($config); ?> <!DOCTYPE html> <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]--> <head> <!-- Basic Page Needs ================================================== --> <meta charset="utf-8"> <title>Home - UK Sports Blog - The Quiet Man Lets Out A Roar</title> <meta name="description" content="The Quiet Man Lets Out a Roar Homepage - UK Sports blog covering Football, Cricket and Tennis (among others)"> <meta name="author" content="Martin Heavens"> <!-- Mobile Specific Metas ================================================== --> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- CSS ================================================== --> <link rel="stylesheet" href="stylesheets/base.css"> <link rel="stylesheet" href="stylesheets/skeleton.css"> <link rel="stylesheet" href="stylesheets/layout.css"> <link rel="stylesheet" href="../stylesheets/base.css"> <link rel="stylesheet" href="../stylesheets/skeleton.css"> <link rel="stylesheet" href="../stylesheets/layout.css"> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- Favicons ================================================== --> <link rel="shortcut icon" href="Images/favicon.ico"> <link rel="apple-touch-icon" href="Images/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="Images/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="Images/apple-touch-icon-114x114.png"> <!-- Get latest Javascript & Modernizr ================================================== --> <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script> <script src="javascript/modernizr-2.7.1.min.js"></script> <!-- Google Analytics ================================================== --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-39012813-1', 'thequietmanletsoutaroar.com'); ga('send', 'pageview'); </script> <!-- PHP-based styling for drop-down menu ================================================== --> <style> nav.primary ul li:hover ul { height:<?= ($config['links']+1)*35 ?>px;} </style> <!-- Base href for site ================================================== --> <base href="<?=$base?>"> </head> <body> <a name="top"></a> <div class="band"> <header class="container main headband"> <div class="sixteen columns"> <h1 class="logo1"><a href="index.php">The Quiet Man<br/>Lets Out A Roar</a></h1> <h3>What the commentators leave out.</h3> </div><!--end sixteen columns--> </header><!--end header--> <nav class="container primary"> <div class="sixteen columns"> <ul> <li><a href="index.php">Home</a></li> <li><a href="article.php?id=<?= $allposts[0]['id']; ?>">The Back Page</a> <ul> <?php $i = 0; foreach ($allposts as $post) { if( $i < $config['links'] && $post['published'] ) : extract($post); ?> <li><a href="article.php?id=<?= $id; ?>"><span>- </span><?= $title; ?></a></li> <?php $i++; endif; } ?> <li><a href="archive.php">More...</a></li> </ul> </li> <li><a href="about.php">About</a></li> </ul> <?php if( is_logged_in() ) : ?> <ul class="nav-admin"> <li><a href="admin/create.php">Create Post</a></li> <li><a href="admin/dashboard.php">Dashboard</a></li> <li><a href="admin/settings.php">Settings</a></li> <li><a href="admin/logout.php">Logout</a></li> </ul> <?php endif; ?> </div><!--end sixteen columns--> </nav><!--end nav--> <div class="container canvas"> <!-- CONTENT GOES HERE --> <?php include($path); ?> <!-- END OF CONTENT --> </div><!-- container --> <div class="band bottom"> <footer class="container"> <div class="sixteen columns middle-credit"> <a href="#top">Back to Top</a> </div><!--end middle credit--> <div class="eight columns first-credit"> <p><span class="dot">&#8226; </span> The Quiet Man Lets Out a Roar <span class="dot">&#8226; </span> &copy; Martin Heavens 2014 <span class="dot">&#8226;</span> All rights reserved <span class="dot">&#8226;</span> </p> </div><!--end first credit--> <div class="eight columns last-credit"> <p><span class="dot">&#8226; </span>Powered by Skeleton <span class="dot">&#8226; </span>Designed & developed by Martin Heavens <span class="dot">&#8226; </span><a href="admin/">Admin </a><span class="dot">&#8226;</span></p> </div><!--end last credit--> <div class="sixteen columns overall-credit"> <p><span class="dot">&#8226; </span> The Quiet Man Lets Out a Roar <span class="dot">&#8226; </span> &copy; Martin Heavens 2014 <span class="dot">&#8226;</span> All rights reserved <span class="dot">&#8226; </span>Powered by Skeleton <span class="dot">&#8226; </span>Designed & developed by Martin Heavens <span class="dot">&#8226;</span><a href="admin/">Admin </a><span class="dot">&#8226;</span></p> </div><!--end last credit--> </footer><!--end footer--> </div><!--end band bottom --> <!-- JS ================================================== --> <!--Slider--> <script src="javascript/jquery.flexslider.js"></script> <!--Instantiate Javascript plugins --> <script src="javascript/plugins.js"></script> <!--Tabs--> <script src="javascript/tabs.js"></script> <!--jQuery validate--> <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js"></script> <!--Other javascript--> <script> // Create "Latest post" label on first article on index (function(){ var post = <?= $allposts[0]['id']; ?>; $('#tab1 article:first-child').find('p.trail a:last-child').html("Latest Post").attr("href", "article.php?id=" + post); })(); // Submit pop-up $(document).ready(function(){ // hide popup when user clicks on close button $('#closebtn').click(function(){ $('#popupbg').hide(); // hide the overlay }); $('#linkbtn').click(function(){ $(location).attr('href','admin/dashboard.php'); $('#popupbg').hide(); // hide the overlay }); // hides the popup if user clicks anywhere outside the container $('#popupbg').click(function(){ $('#popupbg').hide(); }) // prevents the overlay from closing if user clicks inside the popup overlay $('#popupcontent').click(function(){ return false; }); }); </script> <!-- End Document ================================================== --> </body> </html>

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.0150.00616.59
8.3.50.0150.00017.93
8.3.40.0110.00319.02
8.3.30.0110.00419.06
8.3.20.0050.00220.16
8.3.10.0040.00422.13
8.3.00.0040.00420.46
8.2.180.0170.00316.88
8.2.170.0120.00422.96
8.2.160.0140.00020.80
8.2.150.0040.00424.18
8.2.140.0090.00024.66
8.2.130.0000.00826.16
8.2.120.0040.00817.50
8.2.110.0090.00022.25
8.2.100.0060.00617.72
8.2.90.0040.00417.75
8.2.80.0040.00418.78
8.2.70.0050.00317.63
8.2.60.0040.00417.63
8.2.50.0070.00117.50
8.2.40.0040.00417.62
8.2.30.0040.00417.67
8.2.20.0000.00817.59
8.2.10.0000.00717.69
8.2.00.0030.00517.66
8.1.280.0110.00425.92
8.1.270.0050.00322.24
8.1.260.0040.00426.35
8.1.250.0050.00228.09
8.1.240.0090.00023.92
8.1.230.0040.00819.02
8.1.220.0090.00017.74
8.1.210.0080.00318.77
8.1.200.0030.00617.13
8.1.190.0090.00017.13
8.1.180.0040.00418.10
8.1.170.0040.00417.62
8.1.160.0040.00418.79
8.1.150.0040.00418.54
8.1.140.0000.00919.11
8.1.130.0000.01017.63
8.1.120.0000.00717.36
8.1.110.0030.00517.32
8.1.100.0070.00017.28
8.1.90.0040.00417.38
8.1.80.0000.00717.33
8.1.70.0080.00017.30
8.1.60.0080.00017.51
8.1.50.0000.00717.34
8.1.40.0070.00017.53
8.1.30.0000.00817.47
8.1.20.0050.00317.46
8.1.10.0030.00517.53
8.1.00.0070.00417.45
8.0.300.0050.00218.77
8.0.290.0000.00916.75
8.0.280.0000.00717.95
8.0.270.0000.00818.04
8.0.260.0070.00016.76
8.0.250.0030.00316.92
8.0.240.0070.00017.00
8.0.230.0070.00016.97
8.0.220.0030.00317.00
8.0.210.0000.00716.91
8.0.200.0040.00416.91
8.0.190.0030.00616.95
8.0.180.0040.00416.84
8.0.170.0040.00416.88
8.0.160.0040.00416.90
8.0.150.0070.00016.75
8.0.140.0000.00716.81
8.0.130.0000.00613.33
8.0.120.0030.00516.84
8.0.110.0020.00516.89
8.0.100.0040.00416.85
8.0.90.0050.00316.93
8.0.80.0060.01216.97
8.0.70.0000.00716.94
8.0.60.0050.00217.00
8.0.50.0040.00416.91
8.0.30.0100.01017.05
8.0.20.0120.00917.40
8.0.10.0040.00416.98
8.0.00.0080.01116.74
7.4.330.0050.00015.00
7.4.320.0060.00016.64
7.4.300.0030.00316.55
7.4.290.0030.00316.66
7.4.280.0000.00716.43
7.4.270.0040.00316.55
7.4.260.0030.00716.66
7.4.250.0070.00016.41
7.4.240.0040.00416.61
7.4.230.0000.00816.73
7.4.220.0070.01116.46
7.4.210.0050.01016.53
7.4.200.0000.00716.72
7.4.190.0030.00416.71
7.4.160.0160.00016.36
7.4.150.0090.01117.40
7.4.140.0130.00517.86
7.4.130.0110.00616.63
7.4.120.0070.01116.60
7.4.110.0070.01016.61
7.4.100.0110.01316.43
7.4.90.0070.01016.41
7.4.80.0090.00919.39
7.4.70.0110.00716.32
7.4.60.0060.01216.50
7.4.50.0040.00416.57
7.4.40.0070.00722.77
7.4.30.0070.01016.69
7.4.00.0060.00914.56
7.3.330.0000.00513.33
7.3.320.0020.00213.35
7.3.310.0000.00716.26
7.3.300.0030.00316.38
7.3.290.0030.01116.39
7.3.280.0110.00916.43
7.3.270.0000.01717.40
7.3.260.0120.00816.73
7.3.250.0120.00916.54
7.3.240.0110.00616.50
7.3.230.0110.00616.40
7.3.210.0040.01216.33
7.3.200.0080.00819.39
7.3.190.0120.00616.49
7.3.180.0110.01116.45
7.3.170.0070.01416.50
7.3.160.0130.00316.59
7.3.120.0110.00314.73
7.2.330.0090.00916.77
7.2.320.0030.01416.73
7.2.310.0030.01716.79
7.2.300.0040.01516.38
7.2.290.0080.00816.82
7.2.60.0060.00916.96
7.2.00.0000.01719.34
7.1.200.0080.00315.59
7.1.100.0090.00318.33
7.1.70.0030.00716.93
7.1.60.0080.00317.38
7.1.50.0030.01017.11
7.1.40.0030.00916.70
7.1.30.0030.01016.46
7.1.20.0060.00616.81
7.1.10.0030.00616.55
7.1.00.0000.00816.73
7.0.200.0030.00716.89
7.0.190.0050.00316.47
7.0.180.0000.00916.16
7.0.170.0080.00016.12
7.0.160.0060.00316.32
7.0.150.0040.00716.20
7.0.140.0040.00416.45
7.0.130.0000.00816.58
7.0.120.0000.00916.54
7.0.110.0030.00516.58
7.0.100.0040.00416.36
7.0.90.0090.00616.56
7.0.80.0000.00916.53
7.0.70.0000.00716.34
7.0.60.0050.00215.99
7.0.50.0000.00716.59
7.0.40.0030.00615.42
7.0.30.0040.00715.42
7.0.20.0040.01115.42
7.0.10.0000.00715.42
7.0.00.0000.00815.42
5.6.300.0000.05020.69
5.6.290.0000.04520.80
5.6.280.0130.03321.06
5.6.270.0030.04120.88
5.6.260.0130.04320.86
5.6.250.0160.03321.07
5.6.240.0000.04620.84
5.6.230.0000.05520.89
5.6.220.0030.04120.85
5.6.210.0000.04520.96
5.6.200.0100.03420.87
5.6.190.0230.03321.03
5.6.180.0000.06420.74
5.6.170.0060.03920.78
5.6.160.0030.04020.87
5.6.150.0030.04321.03
5.6.140.0030.08020.84
5.6.130.0030.04420.73
5.6.120.0060.04220.84
5.6.110.0060.05220.76
5.6.100.0100.04220.76
5.6.90.0030.04120.73
5.6.80.0030.04020.38
5.6.70.0070.05620.14
5.6.60.0000.04620.15
5.6.50.0200.03920.23
5.6.40.0030.03820.20
5.6.30.0140.03120.11
5.6.20.0060.03620.30
5.6.10.0000.04320.41
5.6.00.0100.03620.30
5.5.380.0060.03817.44
5.5.370.0030.04417.45
5.5.360.0030.04317.46
5.5.350.0060.04217.46
5.5.340.0060.04117.91
5.5.330.0030.03917.75
5.5.320.0030.04618.12
5.5.310.0000.04717.86
5.5.300.0030.04518.02
5.5.290.0030.04717.93
5.5.280.0040.04617.74
5.5.270.0170.05817.73
5.5.260.0000.04817.96
5.5.250.0030.04517.76
5.5.240.0070.03317.36
5.5.230.0000.04717.31
5.5.220.0030.04617.49
5.5.210.0030.04217.46
5.5.200.0030.06117.06
5.5.190.0000.05217.38
5.5.180.0070.03617.34
5.5.160.0070.04317.09
5.5.150.0030.04417.05
5.5.140.0100.04017.41
5.5.130.0030.03817.32
5.5.120.0030.05117.46
5.5.110.0070.03317.28
5.5.100.0130.03017.29
5.5.90.0130.04217.32
5.5.80.0070.03317.29
5.5.70.0070.05817.31
5.5.60.0230.04016.98
5.5.50.0230.04217.26
5.5.40.0100.03417.24
5.5.30.0000.03917.27
5.5.20.0070.03517.27
5.5.10.0030.03817.25
5.5.00.0090.03116.93
5.4.450.0070.04319.26
5.4.440.0030.04119.25
5.4.430.0000.05819.32
5.4.420.0030.04219.32
5.4.410.0070.04019.16
5.4.400.0070.03718.82
5.4.390.0070.03718.95
5.4.380.0000.05118.90
5.4.370.0100.04418.90
5.4.360.0160.04219.04
5.4.350.0000.04618.87
5.4.340.0030.04218.96
5.4.320.0000.04818.81
5.4.310.0030.04018.75
5.4.300.0030.04719.04
5.4.290.0000.03919.04
5.4.280.0000.04418.78
5.4.270.0000.03918.99
5.4.260.0000.04518.87
5.4.250.0000.04218.86
5.4.240.0000.04518.86
5.4.230.0030.05018.86
5.4.220.0060.04918.92
5.4.210.0210.05118.80
5.4.200.0030.04118.92
5.4.190.0160.04418.80
5.4.180.0030.03718.95
5.4.170.0060.03418.71
5.4.160.0030.04018.93
5.4.150.0200.04419.02
5.4.140.0070.03316.38
5.4.130.0000.03816.27
5.4.120.0000.05016.46
5.4.110.0070.03316.25
5.4.100.0030.04116.53
5.4.90.0030.03816.47
5.4.80.0030.03316.45
5.4.70.0000.04516.52
5.4.60.0060.03516.45
5.4.50.0030.04116.35
5.4.40.0100.04516.29
5.4.30.0040.03516.25
5.4.20.0030.03716.53
5.4.10.0000.04516.29
5.4.00.0260.03315.95
5.3.290.0070.04415.45
5.3.280.0090.03515.45
5.3.270.0030.03615.45
5.3.260.0240.04215.45
5.3.250.0000.05115.45
5.3.240.0000.04215.45
5.3.230.0030.03815.45
5.3.220.0070.03415.45
5.3.210.0000.05415.45
5.3.200.0030.04015.45
5.3.190.0030.04615.45
5.3.180.0070.03815.45
5.3.170.0030.03715.45
5.3.160.0030.04315.45
5.3.150.0000.03915.45
5.3.140.0030.03815.45
5.3.130.0030.03915.45
5.3.120.0000.04015.45
5.3.110.0070.04715.45
5.3.100.0000.04015.45
5.3.90.0030.04815.45
5.3.80.0100.02715.45
5.3.70.0030.03715.45
5.3.60.0040.03615.45
5.3.50.0030.03615.45
5.3.40.0000.03915.45
5.3.30.0070.04015.45
5.3.20.0030.03415.45
5.3.10.0060.04115.45
5.3.00.0040.03615.45

preferences:
67.25 ms | 400 KiB | 5 Q