我可以从命令行“php youtube-dl.php”运行 youtube-dl.php 工作正常
但不能从http工作......是不是和chown有关?
$url = "https://www.youtube.com/watch?v=KdS6HFQ_LUc";
echo "Saving $url";
$cmd = 'youtube-dl -o "/var/www/domain.com/test/%(title)s.%(ext)s" '.$url.' -f bestvideo+bestaudio';
exec($cmd, $output, $ret);
echo 'output: ';
var_export($output);
回声“\nret:”;var_export($ret);