<?php
if(!isset($_REQUEST['filename']))
{
exit('No file');
}
$upload_path = dirname("files"). '/';
$filename = $_REQUEST['filename'];
$fp = fopen($upload_path."/".$filename.".wav", "wb");
***fwrite($fp, file_get_contents('php://input'));***
fclose($fp);
exit('done');
?>
我正在使用this示例嘗試錄製音頻並將其發送到服務器。用PHP它可以正常工作,但我想把這段代碼轉換成Ruby。在這一行中有(php://輸入),這是什麼意思?我應該寫些什麼紅寶石將PHP代碼轉換爲Ruby
fwrite($ fp,file_get_contents('php:// input')); 謝謝
我不知道紅寶石,但PHP://輸入得到你的HTTP請求的原始 –
'php://輸入'在這裏解釋:http://php.net/manual/en/wrappers .php.php – hakre