当前位置:Gxlcms > PHP教程 > PHP用代码实现文件上载

PHP用代码实现文件上载

时间:2021-07-01 10:21:17 帮助过:16人阅读

PHP用代码实现文件下载

?

输出文件内容
 echo fread($file,filesize($file_dir . $file_name));
 fclose($file);
 exit();
 }
 ?>

?

网友回复:

if (!file_exists($file_dir.$file_name)) { //检查文件是否存在?
这个是错误的,检查文件是否存在要用is_file,file_exists在文件不存在但是文件夹存在的时候也会返回TRUE。

?

From:http://www.cnblogs.com/analyzer/articles/1393967.html

?

人气教程排行