PHP - copy() :: 파일을 복사합니다.
PHP 함수
요약
파일을 복사합니다.
함수 원형
copy ( string $source , string $dest , resource $context = ? ) : bool
파라미터
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";
}
참고
$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)
관련 함수
import shutil
def copy(source, dest):
return shutil.copy(source, dest)
copyright phpman all right reserved
인스턴트코더 uses phpman's content under contract.
인스턴트코더에 개발 의뢰를 요청하시려면 먼저 FAQ를 읽어보시고, 적합하다고 판단하시면 [email protected]로 연락해 주세요.
Author And Source
이 문제에 관하여(PHP - copy() :: 파일을 복사합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@instantcoderweb/PHP-copy-파일을-복사합니다저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)