php 复制文件到指定目录

时间:2021-05-26 21:00:00

复制一个文件到指定的目录,可自行设置文件目的目录及复制的文件的文件名

<?php
//复制图片
function file2dir($sourcefile, $dir,$filename){
     if( ! file_exists($sourcefile)){
         return false;
     }
     //$filename = basename($sourcefile);
     return copy($sourcefile, $dir .''. $filename);
}
file2dir("01/5.jpg", "01/successImg/","a.jpg");
?>