3v4l.org

run code in 300+ PHP versions simultaneously
<html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" size="20" /><br /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html> <?php 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"]; } ?>
Output for git.master, git.master_jit
<html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" size="20" /><br /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html> Warning: Undefined array key "file" in /in/eo8QM on line 11 Warning: Trying to access array offset on value of type null in /in/eo8QM on line 11 Warning: file_exists(): open_basedir restriction in effect. File(upload/) is not within the allowed path(s): (/tmp:/in:/etc) in /in/eo8QM on line 11 Warning: Undefined array key "file" in /in/eo8QM on line 17 Warning: Trying to access array offset on value of type null in /in/eo8QM on line 17 Warning: Undefined array key "file" in /in/eo8QM on line 17 Warning: Trying to access array offset on value of type null in /in/eo8QM on line 17 Deprecated: move_uploaded_file(): Passing null to parameter #1 ($from) of type string is deprecated in /in/eo8QM on line 17 Warning: Undefined array key "file" in /in/eo8QM on line 18 Warning: Trying to access array offset on value of type null in /in/eo8QM on line 18 Stored in: upload/
Output for rfc.property-hooks
<html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" size="20" /><br /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html> Warning: Undefined array key "file" in /in/eo8QM on line 11 Warning: Trying to access array offset on null in /in/eo8QM on line 11 Warning: file_exists(): open_basedir restriction in effect. File(upload/) is not within the allowed path(s): (/tmp:/in:/etc) in /in/eo8QM on line 11 Warning: Undefined array key "file" in /in/eo8QM on line 17 Warning: Trying to access array offset on null in /in/eo8QM on line 17 Warning: Undefined array key "file" in /in/eo8QM on line 17 Warning: Trying to access array offset on null in /in/eo8QM on line 17 Deprecated: move_uploaded_file(): Passing null to parameter #1 ($from) of type string is deprecated in /in/eo8QM on line 17 Warning: Undefined array key "file" in /in/eo8QM on line 18 Warning: Trying to access array offset on null in /in/eo8QM on line 18 Stored in: upload/

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