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.
12 lines
350 B
PHP
12 lines
350 B
PHP
<?php
|
|
// 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.';
|
|
|
|
?>
|