3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Simple file uplaod script. * NO WARRANTY. THIS SCRIPT IS ONLY AN EXAMPLE. * INPUT VALIDATION IS MINIMAL. DO NOT USE IN PRODUCTION * * @copyright 2014 Alex Soban * @license http://opensource.org/licenses/MIT * @author Alex Soban <me@soban.co> */ define('TOKEN', '<secure_token>'); define('UPLOADS', __DIR__ . '/uploads/'); define('URL', 'http://www.example.com/uploads/'); function output(array $data = array()) { header('Content-Type: application/json'); echo json_encode($data); exit; } // `t // get the filename and contents $filename = trim(preg_replace('/[^\d\w.]+/i', '', $_POST['name'])); $image = base64_decode($_POST['image']); // "upload" the file to our uploads directory if (!file_put_contents(UPLOADS . $filename, $image)) { output(array('error' => 'Failed saving file.')); } // return file public URL output(array('href' => URL . $filename));
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined array key "name" in /in/b41SU on line 26 Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /in/b41SU on line 26 Warning: Undefined array key "image" in /in/b41SU on line 27 Deprecated: base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in /in/b41SU on line 27 Warning: file_put_contents(/in/uploads/): Failed to open stream: Is a directory in /in/b41SU on line 30 Warning: Cannot modify header information - headers already sent by (output started at /in/b41SU:26) in /in/b41SU on line 17 {"error":"Failed saving file."}
Output for 8.0.0 - 8.0.30
Warning: Undefined array key "name" in /in/b41SU on line 26 Warning: Undefined array key "image" in /in/b41SU on line 27 Warning: file_put_contents(/in/uploads/): Failed to open stream: Is a directory in /in/b41SU on line 30 Warning: Cannot modify header information - headers already sent by (output started at /in/b41SU:26) in /in/b41SU on line 17 {"error":"Failed saving file."}
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, 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
Notice: Undefined index: name in /in/b41SU on line 26 Notice: Undefined index: image in /in/b41SU on line 27 Warning: file_put_contents(/in/uploads/): failed to open stream: Is a directory in /in/b41SU on line 30 Warning: Cannot modify header information - headers already sent by (output started at /in/b41SU:26) in /in/b41SU on line 17 {"error":"Failed saving file."}
Output for 7.3.32 - 7.3.33, 7.4.26
Warning: file_put_contents(/in/uploads/): failed to open stream: Is a directory in /in/b41SU on line 30 Warning: Cannot modify header information - headers already sent by (output started at /in/b41SU:30) in /in/b41SU on line 17 {"error":"Failed saving file."}
Output for 5.2.3 - 5.2.17
Notice: Use of undefined constant __DIR__ - assumed '__DIR__' in /in/b41SU on line 13 Notice: Undefined index: name in /in/b41SU on line 26 Notice: Undefined index: image in /in/b41SU on line 27 Warning: file_put_contents(__DIR__/uploads/): failed to open stream: No such file or directory in /in/b41SU on line 30 Warning: Cannot modify header information - headers already sent by (output started at /in/b41SU:13) in /in/b41SU on line 17 {"error":"Failed saving file."}
Output for 5.2.0 - 5.2.2
Notice: Use of undefined constant __DIR__ - assumed '__DIR__' in /in/b41SU on line 13 Notice: Undefined index: name in /in/b41SU on line 26 Notice: Undefined index: image in /in/b41SU on line 27 Warning: file_put_contents(__DIR__/uploads/): failed to open stream: No such file or directory in /in/b41SU on line 30 {"error":"Failed saving file."}
Output for 5.1.0 - 5.1.6
Notice: Use of undefined constant __DIR__ - assumed '__DIR__' in /in/b41SU on line 13 Notice: Undefined index: name in /in/b41SU on line 26 Notice: Undefined index: image in /in/b41SU on line 27 Warning: file_put_contents(__DIR__/uploads/): failed to open stream: No such file or directory in /in/b41SU on line 30 Fatal error: Call to undefined function json_encode() in /in/b41SU on line 18
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_ARRAY, expecting '&' or T_VARIABLE in /in/b41SU on line 16
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_ARRAY, expecting ')' in /in/b41SU on line 16
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_ARRAY, expecting ')' in /in/b41SU on line 16
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `')'' in /in/b41SU on line 16
Process exited with code 255.

preferences:
289.68 ms | 401 KiB | 460 Q