PHP - copy() :: 파일을 복사합니다.

2126 단어 copyphpcopy

PHP 함수

copy

요약

파일을 복사합니다.

함수 원형

 copy ( string $source , string $dest , resource $context = ? ) : bool

파라미터

$source
소스 파일의 경로.

$dest
대상 경로입니다.
dest가 URL인 경우 래퍼가 기존 파일 덮어 쓰기를 지원하지 않으면 복사 작업이 실패 할 수 있습니다.
대상 파일이 이미 있으면 덮어 씁니다.

$context
stream_context_create()로 생성 된 유효한 컨텍스트 리소스입니다.

설명

PHP 4 버전부터 제공됩니다.

$dest에 파일 원본의 복사본을 만듭니다.
파일을 이동하려면 rename() 함수를 사용하십시오.

성공하면 true를, 실패하면 false를 반환합니다.

예제

$file = 'example.txt';
$newfile = 'example.txt.bak';

if (!copy($file, $newfile)) {
    echo "failed to copy $file...\n";
}

참고

https://phpman.ml/copy
https://www.php.net/manual/en/function.copy.php

파이썬 코드

import shutil

def copy(source, dest):
    return shutil.copy(source, dest)

관련 함수

move_uploaded_file
rename


copyright phpman all right reserved
인스턴트코더 uses phpman's content under contract.


인스턴트코더에 개발 의뢰를 요청하시려면 먼저 FAQ를 읽어보시고, 적합하다고 판단하시면 [email protected]로 연락해 주세요.

좋은 웹페이지 즐겨찾기