Home >Backend Development >PHP Tutorial >PHP function copy() copy file example

PHP function copy() copy file example

WBOY
WBOYOriginal
2016-07-25 08:45:49793browse
  1. $old = 'C:tmpsomeold.txt';
  2. $new = 'C:tmpsomenew.txt';
  3. copy($old,$new) or die("couldn't copy $old to $new");
  4. ?>
复制代码

PHP, copy


Statement:
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