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 git.master, git.master_jit
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 rfc.property-hooks
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 ( )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
47.84 ms | 405 KiB | 8 Q