摇滚街
http://www.rock-street.com/index.asp 刚找到的。喜欢roc...
- 娱乐乐园,
作者 xltxlm 发布于 2003-08-01 分类:php基础编程
以前老是因为这样可以可以下载FTP文件,试验了一下,小点的倒可以,大了就不行,最多32KB:confused: :confused:
<?php
$file_name = "1.mp3";
$file_dir = "ftp://192.168.1.80/";
$file = @ fopen($file_dir . $file_name,"r");
if (!$file) {
echo "找不到文件";
} else {
Header("Content-type: application/octet-stream");
Header("Content-Disposition: attachment; filename=" . $file_name);
while (!feof ($file)) {
echo fread($file,50000);
}
fclose ($file);
}
?>
逛论坛交流:发现一个错误ftp下载文件
t
(随便灌水)
回家睡去吧。。明天再来看哦。。。
可以了,是偶的破机器的问题
http://bbs.phpres.com/showthread.php?s=&threadid=37060
3 条回复
回复