본문 바로가기
개발/php

php 파일 복사

by 철권 2018. 7. 23.
728x90

<?php 
 
// test.php파일을 복사본 test.php.bak로 만듭니다. 
 
$oldfile 'test.php'
// 원본파일 
 
$newfile 'test.php.bak'
// 복사파일 

 // 실제 존재하는 파일인지 체크... 
 
if(file_exists($oldfile
)) { 
      if(!
copy($oldfile$newfile
)) { 
            echo 
"파일 복사 실패"

      } else if(
file_exists($newfile
)) { 
            echo 
"파일 복사 성공"

      } 
 } 
 
?>

728x90
반응형

'개발 > php' 카테고리의 다른 글

PHP-SQLite2JSON  (0) 2018.07.27
SQLite to JSON with PHP  (0) 2018.07.26
php JSON_PRETTY_PRINT  (0) 2018.07.23
php 변수 전달(js)  (0) 2018.07.21
Cannot use object of type stdClass as array  (0) 2018.07.21