(PHP 4, PHP 5, PHP 7, PHP 8)
copy — 拷贝文件
from
源文件路径。
to
目标路径。如果 to
是一个 URL,则如果封装协议不支持覆盖已有的文件时拷贝操作会失败。
如果目标文件已存在,将会被覆盖。
context
A valid context resource created with stream_context_create().
示例 #1 copy() 例子
<?php
$file = 'example.txt';
$newfile = 'example.txt.bak';
if (!copy($file, $newfile)) {
echo "failed to copy $file...\n";
}
?>