我已经在php中完成了一个呼叫中心项目。 我的目标是将呼叫记录文件写入远程服务器。怎么可能?。
我的代码是,
if(isset($row['recAudioFile'])){
$path="http://xxxxx.com/testrecordings/";
$RecordedFile="test.mp3";
file_put_contents($path.$RecordedFile,base64_decode($row['recAudioFile']));
}
注意:我无法在远程服务器上运行任何php代码,也无法建立FTP连接。