Home > Backend Development > PHP Tutorial > php使用copy()拷备文件的一个问题

php使用copy()拷备文件的一个问题

WBOY
Release: 2016-06-23 13:24:38
Original
808 people have browsed it

请问各位大师,我在使用php的copy()拷备文件
$file  =  'd:/temp/example.txt' ;
$newfile  =  'e:/example.txt' ;

if (! copy ( $file ,  $newfile )) {
    echo  "failed to copy  $file ...\n" ;
}
?> 
拷备后的文件的时间为完成拷备的时间,而我希望拷备后的文件时间与原文件一样,不知如何处理。
请大师们指点。


回复讨论(解决方案)

touch($newfile, filectime($file));
Copy after login

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template