You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
402 B
PHTML
13 lines
402 B
PHTML
6 years ago
|
<?php
|
||
|
error_reporting(-1);
|
||
|
ini_set("display_errors", "On");
|
||
|
// requires php5
|
||
6 years ago
|
define('UPLOAD_DIR', '../uploads/2/');
|
||
6 years ago
|
$img = $_POST['base64'];
|
||
|
$img = str_replace('data:audio/mp3;base64,', '', $img);
|
||
|
$img = str_replace(' ', '+', $img);
|
||
|
$data = base64_decode($img);
|
||
|
$file = UPLOAD_DIR . uniqid() . '.mp3';
|
||
|
$success = file_put_contents($file, $data);
|
||
|
print $success ? $file : 'Unable to save the file.';
|
||
|
?>
|