3v4l.org

run code in 300+ PHP versions simultaneously
<?php $allowedExts = array("gif", "jpeg", "jpg", "png"); $extension = end(explode(".", $_FILES["file"]["name"])); 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"]["size"] < 60000) && 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"; } ?>
Output for git.master, git.master_jit
Warning: Undefined array key "file" in /in/qkRLS on line 3 Warning: Trying to access array offset on value of type null in /in/qkRLS on line 3 Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /in/qkRLS on line 3 Notice: Only variables should be passed by reference in /in/qkRLS on line 3 Warning: Undefined array key "file" in /in/qkRLS on line 4 Warning: Trying to access array offset on value of type null in /in/qkRLS on line 4 Warning: Undefined array key "file" in /in/qkRLS on line 5 Warning: Trying to access array offset on value of type null in /in/qkRLS on line 5 Warning: Undefined array key "file" in /in/qkRLS on line 6 Warning: Trying to access array offset on value of type null in /in/qkRLS on line 6 Warning: Undefined array key "file" in /in/qkRLS on line 7 Warning: Trying to access array offset on value of type null in /in/qkRLS on line 7 Warning: Undefined array key "file" in /in/qkRLS on line 8 Warning: Trying to access array offset on value of type null in /in/qkRLS on line 8 Warning: Undefined array key "file" in /in/qkRLS on line 9 Warning: Trying to access array offset on value of type null in /in/qkRLS on line 9 Invalid file
Output for rfc.property-hooks
Warning: Undefined array key "file" in /in/qkRLS on line 3 Warning: Trying to access array offset on null in /in/qkRLS on line 3 Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /in/qkRLS on line 3 Notice: Only variables should be passed by reference in /in/qkRLS on line 3 Warning: Undefined array key "file" in /in/qkRLS on line 4 Warning: Trying to access array offset on null in /in/qkRLS on line 4 Warning: Undefined array key "file" in /in/qkRLS on line 5 Warning: Trying to access array offset on null in /in/qkRLS on line 5 Warning: Undefined array key "file" in /in/qkRLS on line 6 Warning: Trying to access array offset on null in /in/qkRLS on line 6 Warning: Undefined array key "file" in /in/qkRLS on line 7 Warning: Trying to access array offset on null in /in/qkRLS on line 7 Warning: Undefined array key "file" in /in/qkRLS on line 8 Warning: Trying to access array offset on null in /in/qkRLS on line 8 Warning: Undefined array key "file" in /in/qkRLS on line 9 Warning: Trying to access array offset on null in /in/qkRLS on line 9 Invalid file

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:
48.76 ms | 403 KiB | 8 Q