如何使用PHP将文件从一个目录复制到另一个目录?
PHP的 copy()函数用于将文件从源目录复制到目标或目标目录。它将源文件复制到目标文件,如果目标文件已经存在,它会被覆盖。 copy()函数在成功时返回 true,在失败时返回 false。
句法:
bool copy( string $source, string $destination, resource $context )
参数:此函数使用三个参数源、目标和上下文,如下所示:
- $source:指定源文件的路径。
- $destination:指定目标文件或文件夹的路径。
- $context:指定使用 stream_context_create()函数创建的上下文资源。它是可选参数。
返回:它返回一个布尔值,真(成功)或假(失败)。
例子:
Input : $source = 'Source_file_location'
$destination = 'Destination_file_location'
copy( $source, $destination )
Output: true
输出:
File has been copied!
参考: https://www. PHP.net/manual/en/函数.copy。 PHP