gpt4 book ai didi

php - PHP-将音频数据写入文件会导致空文件

转载 作者:行者123 更新时间:2023-12-03 02:22:28 24 4
gpt4 key购买 nike

我正在尝试在服务器上保存音频文件。我以PCM格式在iPhone上录制音频,然后将编码为Base64字符串的数据发送出去。我尝试了3种不同的方法来保存文件,所有3种方法都会创建一个空的wav文件:

尝试1:

$file = fopen($filePath, 'w');
fwrite($file, base64_decode($this->data['Voicenote']['audio_data']));
fclose($file);

尝试2:
file_put_contents($filePath, base64_decode($this->data['Voicenote']['audio_data']));

尝试3:
$audioFile = new File($filePath, true);
$audioFile->write(base64_decode($this->data['Voicenote']['audio_data']));
$audioFile->close();

最佳答案

我设法按照this question中的代码解决了这个问题

在我的PHP代码中,我做了以下工作:

move_uploaded_file($_FILES['audio_file']['tmp_name'], $filePath);

这样做可以将音频文件正确保存在服务器上。

关于php - PHP-将音频数据写入文件会导致空文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10306475/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com