3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (isset($_POST['add']) { if (isset($_GET['news']) && $_GET['news'] == 'add') { $savePost = TRUE; $emptyStory = FALSE; $emptyHeadLine = FALSE; $cutoffheadlineNotNumeric = FALSE; $cutoffNotNumeric = FALSE; $story = mysqli_real_escape_string($sqli, $_POST['story']); $headline = mysqli_real_escape_string($sqli, $_POST['headline']); $thumbnail = mysqli_real_escape_string($sqli, $_POST['thumbnail']); $cutoffheadline = mysqli_real_escape_string($sqli, $_POST['cutoffheadline']); $cutoff = mysqli_real_escape_string($sqli, $_POST['cutoff']); $timestamp = date('Y-m-d H:i:s'); $userid = $_SESSION['id']; if (empty($story)) { $emptyStory = TRUE; $savePost = FALSE; } elseif (empty($headline)) { $emptyHeadLine = TRUE; $savePost = FALSE; } elseif (!is_numeric($cutoffheadline)) { $cutoffheadlineNotNumeric = TRUE; $savePost = FALSE; } elseif (!is_numeric($cutoff)) { $cutoffNotNumeric = TRUE; $savePost = FALSE; } if ($savePost == TRUE) { $query = mysqli_query($sqli,"INSERT INTO news (`headline`, `story`, `thumbnail`, `userid`, `timestamp`, `cutoffpointheadline`, `cutoffpoint`) VALUES ('$headline', '$story', '$thumbnail', '$userid', '$timestamp', '$cutoffheadline', '$cutoff')"); header("location:admin.php?news=added"); } } elseif (isset($_GET['blog']) && $_GET['blog'] == 'add') { $savePost = TRUE; $emptyStory = FALSE; $emptyHeadLine = FALSE; $cutoffheadlineNotNumeric = FALSE; $cutoffNotNumeric = FALSE; $story = mysqli_real_escape_string($sqli, $_POST['story']); $headline = mysqli_real_escape_string($sqli, $_POST['headline']); $cutoffheadline = mysqli_real_escape_string($sqli, $_POST['cutoffheadline']); $cutoff = mysqli_real_escape_string($sqli, $_POST['cutoff']); $timestamp = date('Y-m-d H:i:s'); $userid = $_SESSION['id']; if (empty($story)) { $emptyStory = TRUE; $savePost = FALSE; } elseif (empty($headline)) { $emptyHeadLine = TRUE; $savePost = FALSE; } elseif (!is_numeric($cutoffheadline)) { $cutoffheadlineNotNumeric = TRUE; $savePost = FALSE; } elseif (!is_numeric($cutoff)) { $cutoffNotNumeric = TRUE; $savePost = FALSE; } if ($savePost == TRUE) { $query = mysqli_query($sqli,"INSERT INTO blog (`headline`, `story`, `thumbnail`, `userid`, `timestamp`, `cutoffpointheadline`, `cutoffpoint`) VALUES ('$headline', '$story', '$userid', '$timestamp', '$cutoffheadline', '$cutoff')"); header("location:admin.php?blog=added"); } } elseif (isset($_GET['events']) && $_GET['events'] == 'add') { $savePost = TRUE; $emptyFullName = FALSE; $emptyShortName = FALSE; $emptyDescription = FALSE; $emptyPicture = FALSE; $fullname = mysqli_real_escape_string($sqli, $_POST['fullname']); $shortname = mysqli_real_escape_string($sqli, $_POST['shortname']); $description = mysqli_real_escape_string($sqli, $_POST['description']); $game = mysqli_real_escape_string($sqli, $_POST['game']); $picture = mysqli_real_escape_string($sqli, $_POST['picture']); $giveaway = mysqli_real_escape_string($sqli, $_POST['giveaway']); $giveawaytype = mysqli_real_escape_string($sqli, $_POST['giveawaytype']); //Can be empty? $facebooklink = ''; $timestamp = '0000-00-00 00:00:00'; $userid = $_SESSION['id']; if (empty($fullname)) { $emptyFullName = TRUE; $savePost = FALSE; } elseif (empty($shortname)) { $emptyShortName = TRUE; $savePost = FALSE; } elseif (empty($description)) { $emptyDescription = TRUE; $savePost = FALSE; } elseif (empty($game)) { $game = 'Not set'; } elseif (empty($picture)) { $picture = ''; //Standard picture } if ($savePost == TRUE) { $query = mysqli_query($sqli,"INSERT INTO blog (`userid`, `name`, `calendarname`, `text`, `game`, `giveaway`, `giveawaytype`, `timestamp`, `picturethumbnail`, `picturecalendar`, `facebooklink`) VALUES ('$userid', '$fullname', '$shortname', '$text', '$game', '$giveaway', '$giveawaytype', '$timestamp', '$picture', '$picture', '$facebooklink')"); header("location:admin.php?events=added"); } } } if (isset($_POST['update']) { if (isset($_GET['news']) && $_GET['news'] == 'edit' && isset($_GET['id']) && is_numeric($_GET['id'])) { $id = mysqli_real_escape_string($sqli, $_POST['id']); } else if (isset($_GET['blog']) && $_GET['blog'] == 'edit' && isset($_GET['id']) && is_numeric($_GET['id'])) { $id = mysqli_real_escape_string($sqli, $_POST['id']); } else if (isset($_GET['events']) && $_GET['events'] == 'edit' && isset($_GET['id']) && is_numeric($_GET['id'])) { $id = mysqli_real_escape_string($sqli, $_POST['id']); } else if (isset($_GET['members']) && $_GET['members'] == 'edit' && isset($_GET['id']) && is_numeric($_GET['id'])) { $id = mysqli_real_escape_string($sqli, $_POST['id']); } } ?>

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)
5.4.310.0080.03612.49
5.4.300.0070.03512.50
5.4.290.0050.03912.49
5.4.280.0080.03312.39
5.4.270.0040.03712.39
5.4.260.0060.03712.39
5.4.250.0070.03612.39
5.4.240.0090.03212.39
5.4.230.0070.03712.38
5.4.220.0050.03612.38
5.4.210.0020.03912.38
5.4.200.0060.03712.38
5.4.190.0110.03612.38
5.4.180.0050.03812.38
5.4.170.0050.03812.38
5.4.160.0060.03612.38
5.4.150.0140.04112.38
5.4.140.0120.04612.07
5.4.130.0080.03612.05
5.4.120.0050.03712.01
5.4.110.0040.04012.01
5.4.100.0070.03612.01
5.4.90.0050.03812.02
5.4.80.0070.03512.01
5.4.70.0090.03112.01
5.4.60.0060.03412.01
5.4.50.0060.04112.01
5.4.40.0070.04012.00
5.4.30.0060.04111.99
5.4.20.0070.03411.98
5.4.10.0070.03311.99
5.4.00.0060.03711.48
5.3.280.0060.03912.71
5.3.270.0070.04012.72
5.3.260.0070.03912.72
5.3.250.0050.03812.72
5.3.240.0050.03912.72
5.3.230.0060.03812.71
5.3.220.0040.03912.68
5.3.210.0060.03812.68
5.3.200.0060.03612.68
5.3.190.0040.03912.68
5.3.180.0040.03812.67
5.3.170.0060.04312.67
5.3.160.0040.03812.67
5.3.150.0080.03512.68
5.3.140.0090.03512.66
5.3.130.0050.04012.66
5.3.120.0050.04012.66
5.3.110.0050.03912.66
5.3.100.0050.03712.12
5.3.90.0030.03912.09
5.3.80.0080.03312.07
5.3.70.0090.04012.07
5.3.60.0070.03612.06
5.3.50.0080.03512.00
5.3.40.0050.03712.00
5.3.30.0080.03811.95
5.3.20.0100.03111.73
5.3.10.0040.03811.70
5.3.00.0070.03511.68
5.2.170.0030.0329.19
5.2.160.0040.0309.18
5.2.150.0070.0289.19
5.2.140.0030.0339.18
5.2.130.0020.0329.15
5.2.120.0040.0299.15
5.2.110.0020.0329.15
5.2.100.0050.0289.14
5.2.90.0050.0299.15
5.2.80.0060.0299.14
5.2.70.0030.0319.14
5.2.60.0040.0309.10
5.2.50.0040.0309.06
5.2.40.0030.0309.04
5.2.30.0060.0289.02
5.2.20.0070.0269.01
5.2.10.0040.0298.94
5.2.00.0020.0358.79
5.1.60.0020.0278.07
5.1.50.0020.0278.07
5.1.40.0040.0248.05
5.1.30.0030.0278.40
5.1.20.0020.0308.43
5.1.10.0060.0248.14
5.1.00.0020.0288.14
5.0.50.0040.0206.63
5.0.40.0050.0186.48
5.0.30.0030.0326.29
5.0.20.0030.0206.27
5.0.10.0030.0206.25
5.0.00.0030.0316.24
4.4.90.0050.0134.78
4.4.80.0020.0154.75
4.4.70.0040.0184.75
4.4.60.0050.0184.75
4.4.50.0040.0164.77
4.4.40.0030.0254.71
4.4.30.0030.0154.76
4.4.20.0050.0144.84
4.4.10.0010.0184.85
4.4.00.0040.0244.76
4.3.110.0020.0164.67
4.3.100.0020.0164.66
4.3.90.0020.0154.63
4.3.80.0040.0234.58
4.3.70.0010.0164.63
4.3.60.0010.0164.63
4.3.50.0020.0164.63
4.3.40.0020.0244.54
4.3.30.0010.0173.29
4.3.20.0020.0163.26
4.3.10.0020.0173.22
4.3.00.0000.0237.21

preferences:
142.32 ms | 1398 KiB | 7 Q