什么是简单的 PHP 文件下载脚本?
我昨天刚刚购买了一个域名(cryptum.net),我打算向其中上传一些文件。我的问题是我没有好的 PHP5 下载脚本。我只想要一个简单的脚本,将文件保存到用户下载文件夹中。这些文件位于网站 ftp 服务器上。这是我到目前为止所拥有的-
<?php
$conn = ftp_connect("ftp://[email protected]") or die("Could not connect");
ftp_login($conn,"username","password");
//download script goes here
ftp_close($conn);
?>
I only just bought a web domain yesterday(cryptum.net) and I intend to upload some files to it. My problem is I don't have a good PHP5 download script. I just want a simple script that will save the file to the users download folder. The files are located on the websites ftp server. Here is what I have so far-
<?php
$conn = ftp_connect("ftp://[email protected]") or die("Could not connect");
ftp_login($conn,"username","password");
//download script goes here
ftp_close($conn);
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
另一个非常优雅的解决方案,它使用了 PHP 强大的流功能:
Another very elegant solution which uses the powerful stream features of PHP:
你可以使用 php-curl 代替......
and you could use php-curl instead...