Russian Ukraine English
Catalog RSS


copy

(PHP 3, PHP 4 )

copy -- Copies file

Description

int copy (string source, string dest)

Makes a copy of a file. Returns true if the copy succeeded, false otherwise.

Example 1. Copy() example


if (!copy($file, $file.'.bak')) {     print ("failed to copy $file...<br>\n"); }       

See also: rename().

Led