���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/video/uploader-master/demo/backend/ |
<?php /* This is a ***DEMO*** , the backend / PHP provided is very basic. You can use it as a starting point maybe, but ***do not use this on production***. It doesn't preform any server-side validation, checks, authentication, etc. For more read the README.md file on this folder. Based on the examples provided on: - http://php.net/manual/en/features.file-upload.php */ header('Content-type:application/json;charset=utf-8'); try { if ( !isset($_FILES['file']['error']) || is_array($_FILES['file']['error']) ) { throw new RuntimeException('Invalid parameters.'); } switch ($_FILES['file']['error']) { case UPLOAD_ERR_OK: break; case UPLOAD_ERR_NO_FILE: throw new RuntimeException('No file sent.'); case UPLOAD_ERR_INI_SIZE: case UPLOAD_ERR_FORM_SIZE: throw new RuntimeException('Exceeded filesize limit.'); default: throw new RuntimeException('Unknown errors.'); } $filepath = sprintf('files/%s_%s', uniqid(), $_FILES['file']['name']); if (!move_uploaded_file( $_FILES['file']['tmp_name'], $filepath )) { throw new RuntimeException('Failed to move uploaded file.'); } // All good, send the response echo json_encode([ 'status' => 'ok', 'path' => $filepath ]); } catch (RuntimeException $e) { // Something went wrong, send the err message as JSON http_response_code(400); echo json_encode([ 'status' => 'error', 'message' => $e->getMessage() ]); }