Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 copy() 함수

<시간/>

copy() 함수는 파일을 복사합니다. 대상 파일에 대한 원본 파일의 복사본이 생성됩니다. 대상 파일이 이미 있는 경우 덮어씁니다.

구문

copy(source_file, dest_file)

매개변수

  • 소스_파일 - 복사할 파일 설정

  • 대상_파일 - 복사할 파일 설정

반환

copy() 함수가 반환됩니다.

  • TRUE, 성공 시
  • FALSE, 실패 시

예시

<?php
echo copy("D:/myfiles/sourcefile.dat","D:/myfiles/destfile.dat");
?>

출력

true

이제 다른 예를 살펴보겠습니다.

예시

<?php
   $file = '/usr/home/guest/example.txt';
   $newfile = '/usr/home/guest/example.txt.bak';
   if (!copy($file, $newfile)) {
      echo "failed to copy $file...\n";
   } else {
      echo "copied $file into $newfile\n";
   }
?>

출력

failed to copy /usr/home/guest/example.txt...