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
403 B
PHP
13 lines
403 B
PHP
<?php
|
|
error_reporting(-1);
|
|
ini_set("display_errors", "On");
|
|
// requires php5
|
|
define('UPLOAD_DIR', '../uploads/');
|
|
$img = $_POST['wavBase64'];
|
|
$img = str_replace('data:audio/wav;base64,', '', $img);
|
|
$img = str_replace(' ', '+', $img);
|
|
$data = base64_decode($img);
|
|
$file = UPLOAD_DIR . uniqid() . '.wav';
|
|
$success = file_put_contents($file, $data);
|
|
print $success ? $file : 'Unable to save the file.';
|
|
?>
|