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

PHP function copy() copy file example

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-25 08:45:49
Original
821 people have browsed it
  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 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