php中copy函數(shù)怎么使用

PHP
小億
94
2024-02-20 10:23:47

在PHP中,copy函數(shù)用于復(fù)制文件或目錄。其語(yǔ)法如下:

bool copy ( string $source , string $dest [, resource $context ] )

其中,source參數(shù)代表源文件或目錄的路徑,dest參數(shù)代表目標(biāo)文件或目錄的路徑,context參數(shù)是可選的,用于指定流的上下文。

示例:

$source = 'file.txt';
$dest = 'newfile.txt';

if (copy($source, $dest)) {
    echo "文件復(fù)制成功";
} else {
    echo "文件復(fù)制失敗";
}

在上面的示例中,將文件file.txt復(fù)制到newfile.txt中。如果復(fù)制成功,輸出"文件復(fù)制成功",否則輸出"文件復(fù)制失敗"。

0