3v4l.org

run code in 300+ PHP versions simultaneously
<?php $allowedExts = array("gif", "jpeg", "jpg", "png", "mpeg", "avi"); $temp = explode(".", $_FILES["file"]["name"]); $extension = end($temp); if ((($_FILES["file"]["type"] == "image/gif") || ($_FILES["file"]["type"] == "image/jpeg") || ($_FILES["file"]["type"] == "image/jpg") || ($_FILES["file"]["type"] == "image/pjpeg") || ($_FILES["file"]["type"] == "image/x-png") || ($_FILES["file"]["type"] == "image/png") || ($_FILES["file"]["type"] == "video/mpeg") || ($_FILES["file"]["type"] == "video/x-msvideo") || ($_FILES["file"]["type"] == "video/avi") || ($_FILES["file"]["type"] == "video/msvideo")) && ($_FILES["file"]["size"] < 2000000000) && in_array($extension, $allowedExts)) { if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br>"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br>"; echo "Type: " . $_FILES["file"]["type"] . "<br>"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB<br>"; echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br>"; if (file_exists("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "Stored in: " . "upload/" . $_FILES["file"]["name"]; } } } else { echo "Invalid file"; print_r($_FILES); }
Output for 8.3.0 - 8.3.4
Warning: Undefined array key "file" in /in/il4gS on line 4 Warning: Trying to access array offset on null in /in/il4gS on line 4 Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /in/il4gS on line 4 Warning: Undefined array key "file" in /in/il4gS on line 6 Warning: Trying to access array offset on null in /in/il4gS on line 6 Warning: Undefined array key "file" in /in/il4gS on line 7 Warning: Trying to access array offset on null in /in/il4gS on line 7 Warning: Undefined array key "file" in /in/il4gS on line 8 Warning: Trying to access array offset on null in /in/il4gS on line 8 Warning: Undefined array key "file" in /in/il4gS on line 9 Warning: Trying to access array offset on null in /in/il4gS on line 9 Warning: Undefined array key "file" in /in/il4gS on line 10 Warning: Trying to access array offset on null in /in/il4gS on line 10 Warning: Undefined array key "file" in /in/il4gS on line 11 Warning: Trying to access array offset on null in /in/il4gS on line 11 Warning: Undefined array key "file" in /in/il4gS on line 12 Warning: Trying to access array offset on null in /in/il4gS on line 12 Warning: Undefined array key "file" in /in/il4gS on line 13 Warning: Trying to access array offset on null in /in/il4gS on line 13 Warning: Undefined array key "file" in /in/il4gS on line 14 Warning: Trying to access array offset on null in /in/il4gS on line 14 Warning: Undefined array key "file" in /in/il4gS on line 15 Warning: Trying to access array offset on null in /in/il4gS on line 15 Invalid fileArray ( )
Output for 8.1.0 - 8.1.27, 8.2.0 - 8.2.17
Warning: Undefined array key "file" in /in/il4gS on line 4 Warning: Trying to access array offset on value of type null in /in/il4gS on line 4 Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /in/il4gS on line 4 Warning: Undefined array key "file" in /in/il4gS on line 6 Warning: Trying to access array offset on value of type null in /in/il4gS on line 6 Warning: Undefined array key "file" in /in/il4gS on line 7 Warning: Trying to access array offset on value of type null in /in/il4gS on line 7 Warning: Undefined array key "file" in /in/il4gS on line 8 Warning: Trying to access array offset on value of type null in /in/il4gS on line 8 Warning: Undefined array key "file" in /in/il4gS on line 9 Warning: Trying to access array offset on value of type null in /in/il4gS on line 9 Warning: Undefined array key "file" in /in/il4gS on line 10 Warning: Trying to access array offset on value of type null in /in/il4gS on line 10 Warning: Undefined array key "file" in /in/il4gS on line 11 Warning: Trying to access array offset on value of type null in /in/il4gS on line 11 Warning: Undefined array key "file" in /in/il4gS on line 12 Warning: Trying to access array offset on value of type null in /in/il4gS on line 12 Warning: Undefined array key "file" in /in/il4gS on line 13 Warning: Trying to access array offset on value of type null in /in/il4gS on line 13 Warning: Undefined array key "file" in /in/il4gS on line 14 Warning: Trying to access array offset on value of type null in /in/il4gS on line 14 Warning: Undefined array key "file" in /in/il4gS on line 15 Warning: Trying to access array offset on value of type null in /in/il4gS on line 15 Invalid fileArray ( )
Output for 8.0.0 - 8.0.30
Warning: Undefined array key "file" in /in/il4gS on line 4 Warning: Trying to access array offset on value of type null in /in/il4gS on line 4 Warning: Undefined array key "file" in /in/il4gS on line 6 Warning: Trying to access array offset on value of type null in /in/il4gS on line 6 Warning: Undefined array key "file" in /in/il4gS on line 7 Warning: Trying to access array offset on value of type null in /in/il4gS on line 7 Warning: Undefined array key "file" in /in/il4gS on line 8 Warning: Trying to access array offset on value of type null in /in/il4gS on line 8 Warning: Undefined array key "file" in /in/il4gS on line 9 Warning: Trying to access array offset on value of type null in /in/il4gS on line 9 Warning: Undefined array key "file" in /in/il4gS on line 10 Warning: Trying to access array offset on value of type null in /in/il4gS on line 10 Warning: Undefined array key "file" in /in/il4gS on line 11 Warning: Trying to access array offset on value of type null in /in/il4gS on line 11 Warning: Undefined array key "file" in /in/il4gS on line 12 Warning: Trying to access array offset on value of type null in /in/il4gS on line 12 Warning: Undefined array key "file" in /in/il4gS on line 13 Warning: Trying to access array offset on value of type null in /in/il4gS on line 13 Warning: Undefined array key "file" in /in/il4gS on line 14 Warning: Trying to access array offset on value of type null in /in/il4gS on line 14 Warning: Undefined array key "file" in /in/il4gS on line 15 Warning: Trying to access array offset on value of type null in /in/il4gS on line 15 Invalid fileArray ( )
Output for 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
Notice: Undefined index: file in /in/il4gS on line 4 Notice: Trying to access array offset on value of type null in /in/il4gS on line 4 Notice: Undefined index: file in /in/il4gS on line 6 Notice: Trying to access array offset on value of type null in /in/il4gS on line 6 Notice: Undefined index: file in /in/il4gS on line 7 Notice: Trying to access array offset on value of type null in /in/il4gS on line 7 Notice: Undefined index: file in /in/il4gS on line 8 Notice: Trying to access array offset on value of type null in /in/il4gS on line 8 Notice: Undefined index: file in /in/il4gS on line 9 Notice: Trying to access array offset on value of type null in /in/il4gS on line 9 Notice: Undefined index: file in /in/il4gS on line 10 Notice: Trying to access array offset on value of type null in /in/il4gS on line 10 Notice: Undefined index: file in /in/il4gS on line 11 Notice: Trying to access array offset on value of type null in /in/il4gS on line 11 Notice: Undefined index: file in /in/il4gS on line 12 Notice: Trying to access array offset on value of type null in /in/il4gS on line 12 Notice: Undefined index: file in /in/il4gS on line 13 Notice: Trying to access array offset on value of type null in /in/il4gS on line 13 Notice: Undefined index: file in /in/il4gS on line 14 Notice: Trying to access array offset on value of type null in /in/il4gS on line 14 Notice: Undefined index: file in /in/il4gS on line 15 Notice: Trying to access array offset on value of type null in /in/il4gS on line 15 Invalid fileArray ( )
Output for 7.3.32 - 7.3.33, 7.4.26
Invalid fileArray ( )
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31
Notice: Undefined index: file in /in/il4gS on line 4 Notice: Undefined index: file in /in/il4gS on line 6 Notice: Undefined index: file in /in/il4gS on line 7 Notice: Undefined index: file in /in/il4gS on line 8 Notice: Undefined index: file in /in/il4gS on line 9 Notice: Undefined index: file in /in/il4gS on line 10 Notice: Undefined index: file in /in/il4gS on line 11 Notice: Undefined index: file in /in/il4gS on line 12 Notice: Undefined index: file in /in/il4gS on line 13 Notice: Undefined index: file in /in/il4gS on line 14 Notice: Undefined index: file in /in/il4gS on line 15 Invalid fileArray ( )
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Notice: Undefined index: file in /in/il4gS on line 4 Notice: Undefined index: file in /in/il4gS on line 6 Notice: Undefined index: file in /in/il4gS on line 7 Notice: Undefined index: file in /in/il4gS on line 8 Notice: Undefined index: file in /in/il4gS on line 9 Notice: Undefined index: file in /in/il4gS on line 10 Notice: Undefined index: file in /in/il4gS on line 11 Notice: Undefined index: file in /in/il4gS on line 12 Notice: Undefined index: file in /in/il4gS on line 13 Notice: Undefined index: file in /in/il4gS on line 14 Notice: Undefined index: file in /in/il4gS on line 15 Invalid fileArray ( )

preferences:
355.27 ms | 403 KiB | 453 Q