我有一个FTP帐户。我想通过 file_get_contents 连接到FTP。这可能吗?如果没有,我该怎么办?
我想为类似于hotfile或rapidshare的上传脚本执行此操作。
答案 0 :(得分:3)
file_get_contents('ftp://username:password@host.com/');
答案 1 :(得分:1)
如果我从你对@genesis'的评论中了解你想做什么,你需要做的是:
$file = file_get_contents("derpost:pass**@ftp1.freakshare.com/Freez%20Screen%20Video%20Capture.lnk");
header('Content-Disposition: attachment; filename="image.jpg"'); // Change file name as appropriate
header('Content-Length: '.strlen($file));
header('Content-Type: image/jpeg'); // Change this MIME type as appropriate
echo $file;