使用file_get_content函数连接ftp帐户

时间:2011-08-21 15:59:12

标签: php ftp

我有一个FTP帐户。我想通过 file_get_contents 连接到FTP。这可能吗?如果没有,我该怎么办?

我想为类似于hotfile或rapidshare的上传脚本执行此操作。

2 个答案:

答案 0 :(得分:3)

file_get_contents('ftp://username:password@host.com/');

答案 1 :(得分:1)

如果我从你对@genesis'的评论中了解你想做什么,你需要做的是:

$file = file_get_contents("derpost:pass**@ftp1.freakshare.com/Freez%20Screen%20Vide‌​o%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;