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.0060.03912.54
5.4.300.0100.03712.55
5.4.290.0090.03612.55
5.4.280.0050.03612.44
5.4.270.0070.03612.45
5.4.260.0090.03512.45
5.4.250.0080.03612.44
5.4.240.0050.03812.45
5.4.230.0040.05512.44
5.4.220.0070.03512.43
5.4.210.0060.03512.44
5.4.200.0060.04112.44
5.4.190.0050.04012.43
5.4.180.0040.03912.43
5.4.170.0060.03712.44
5.4.160.0080.03412.43
5.4.150.0090.03412.43
5.4.140.0080.03612.12
5.4.130.0090.03312.11
5.4.120.0060.03512.07
5.4.110.0050.03612.06
5.4.100.0060.03512.06
5.4.90.0070.03712.06
5.4.80.0080.03812.07
5.4.70.0060.03512.06
5.4.60.0060.03412.06
5.4.50.0090.03212.06
5.4.40.0020.03812.05
5.4.30.0060.03512.05
5.4.20.0070.03312.04
5.4.10.0080.03212.05
5.4.00.0050.03711.54
5.3.280.0050.04512.71
5.3.270.0060.03912.72
5.3.260.0060.04012.72
5.3.250.0070.03612.72
5.3.240.0050.03812.72
5.3.230.0080.03612.71
5.3.220.0090.03812.68
5.3.210.0060.04012.68
5.3.200.0060.03812.68
5.3.190.0070.03812.68
5.3.180.0070.03612.67
5.3.170.0060.03712.67
5.3.160.0050.03812.67
5.3.150.0060.03812.68
5.3.140.0040.03812.66
5.3.130.0040.04112.66
5.3.120.0080.03812.66
5.3.110.0050.04012.65
5.3.100.0090.03512.13
5.3.90.0070.03712.11
5.3.80.0120.03212.11
5.3.70.0130.04612.11
5.3.60.0080.04812.09
5.3.50.0090.03612.03
5.3.40.0060.03712.03
5.3.30.0050.03612.00
5.3.20.0060.03611.77
5.3.10.0110.03211.74
5.3.00.0050.03711.73
5.2.170.0070.0309.23
5.2.160.0040.0309.23
5.2.150.0040.0359.23
5.2.140.0050.0319.22
5.2.130.0070.0279.19
5.2.120.0050.0299.19
5.2.110.0050.0299.20
5.2.100.0090.0269.19
5.2.90.0030.0349.19
5.2.80.0040.0409.19
5.2.70.0070.0319.19
5.2.60.0090.0399.13
5.2.50.0060.0339.11
5.2.40.0060.0379.08
5.2.30.0050.0429.06
5.2.20.0030.0339.06
5.2.10.0080.0308.99
5.2.00.0060.0338.85
5.1.60.0040.0258.14
5.1.50.0070.0248.14
5.1.40.0070.0278.13
5.1.30.0070.0298.48
5.1.20.0050.0268.50
5.1.10.0010.0298.22
5.1.00.0060.0248.22
5.0.50.0030.0216.72
5.0.40.0090.0196.58
5.0.30.0050.0306.38
5.0.20.0030.0206.36
5.0.10.0050.0196.34
5.0.00.0020.0346.34
4.4.90.0020.0174.78
4.4.80.0040.0154.75
4.4.70.0020.0164.75
4.4.60.0060.0134.75
4.4.50.0030.0154.77
4.4.40.0020.0334.71
4.4.30.0040.0154.75
4.4.20.0020.0164.84
4.4.10.0010.0184.85
4.4.00.0020.0274.76
4.3.110.0020.0204.67
4.3.100.0030.0164.66
4.3.90.0050.0134.63
4.3.80.0050.0304.61
4.3.70.0020.0164.63
4.3.60.0080.0124.63
4.3.50.0010.0184.63
4.3.40.0000.0284.56
4.3.30.0020.0173.37
4.3.20.0030.0183.35
4.3.10.0010.0183.31
4.3.00.0330.01315.25

preferences:
142.2 ms | 1394 KiB | 7 Q