0

所以我的 php 文件中有一个脚本,它采用 .wav 文件并将其转换为 .mp3

exec( "lame ".SOMELOCATION."/".$file.".wav  ".LOCATION."/{$Sub}/".$file.".mp3 ");

我现在需要从 url 中获取文件并将其保存到上面列出的位置

例如:

它会像这样进来

 http://someurl.com/audio/something.mp3 

我需要拿那个 mp3 下载并保存在

LOCATION."/{$Sub}/".$file.".mp3 
4

1 回答 1

1

从 URL 中获取子目录:` http://example.com/?Sub=subdir

if (!isset($_GET['Sub']) || is_array($_GET['Sub']) ||
        !preg_match('/[a-z0-9]/i', $_GET['Sub']))
    die("invalid subdirectory");

exec( "lame ".SOMELOCATION."/".$file.".wav  ".
    LOCATION."/{$_GET['Sub']}/".$file.".mp3 ");
于 2010-08-20T15:55:38.537 回答