3v4l.org

run code in 300+ PHP versions simultaneously
<?php if ((($_FILES["file"]["size"] < 20000) )) { 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. Please rename the file and try again."; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "/home/a5405761/public_html/i/" . $_FILES["file"]["name"]); echo "Stored in: " . "/i/" . $_FILES["file"]["name"]; } } } else { echo "Invalid file."; } ?>
Output for git.master, git.master_jit
Warning: Undefined array key "file" in /in/gHe4A on line 2 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 2 Warning: Undefined array key "file" in /in/gHe4A on line 4 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 4 Warning: Undefined array key "file" in /in/gHe4A on line 10 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 10 Upload: <br> Warning: Undefined array key "file" in /in/gHe4A on line 11 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 11 Type: <br> Warning: Undefined array key "file" in /in/gHe4A on line 12 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 12 Size: 0 kB<br> Warning: Undefined array key "file" in /in/gHe4A on line 13 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 13 Temp file: <br> Warning: Undefined array key "file" in /in/gHe4A on line 15 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 15 Warning: file_exists(): open_basedir restriction in effect. File(upload/) is not within the allowed path(s): (/tmp:/in:/etc) in /in/gHe4A on line 15 Warning: Undefined array key "file" in /in/gHe4A on line 21 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 21 Warning: Undefined array key "file" in /in/gHe4A on line 22 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 22 Deprecated: move_uploaded_file(): Passing null to parameter #1 ($from) of type string is deprecated in /in/gHe4A on line 21 Warning: Undefined array key "file" in /in/gHe4A on line 23 Warning: Trying to access array offset on value of type null in /in/gHe4A on line 23 Stored in: /i/
Output for rfc.property-hooks
Warning: Undefined array key "file" in /in/gHe4A on line 2 Warning: Trying to access array offset on null in /in/gHe4A on line 2 Warning: Undefined array key "file" in /in/gHe4A on line 4 Warning: Trying to access array offset on null in /in/gHe4A on line 4 Warning: Undefined array key "file" in /in/gHe4A on line 10 Warning: Trying to access array offset on null in /in/gHe4A on line 10 Upload: <br> Warning: Undefined array key "file" in /in/gHe4A on line 11 Warning: Trying to access array offset on null in /in/gHe4A on line 11 Type: <br> Warning: Undefined array key "file" in /in/gHe4A on line 12 Warning: Trying to access array offset on null in /in/gHe4A on line 12 Size: 0 kB<br> Warning: Undefined array key "file" in /in/gHe4A on line 13 Warning: Trying to access array offset on null in /in/gHe4A on line 13 Temp file: <br> Warning: Undefined array key "file" in /in/gHe4A on line 15 Warning: Trying to access array offset on null in /in/gHe4A on line 15 Warning: file_exists(): open_basedir restriction in effect. File(upload/) is not within the allowed path(s): (/tmp:/in:/etc) in /in/gHe4A on line 15 Warning: Undefined array key "file" in /in/gHe4A on line 21 Warning: Trying to access array offset on null in /in/gHe4A on line 21 Warning: Undefined array key "file" in /in/gHe4A on line 22 Warning: Trying to access array offset on null in /in/gHe4A on line 22 Deprecated: move_uploaded_file(): Passing null to parameter #1 ($from) of type string is deprecated in /in/gHe4A on line 21 Warning: Undefined array key "file" in /in/gHe4A on line 23 Warning: Trying to access array offset on null in /in/gHe4A on line 23 Stored in: /i/

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:
49.15 ms | 408 KiB | 9 Q