Home > Article > Backend Development > How to simply copy files in php_php tips
The example in this article describes how to simply copy files in PHP. Share it with everyone for your reference, the details are as follows:
<?php /** *author:果冻 *qq:52091199 *wyg517.blog.163.com **/ $file = 'image/a1.jpg'; $newfile = 'a/123.jpg'; //必须有写入权限 if (file_exists($file) == false) { die ('文件不在,无法复制'); } $result = copy($file, $newfile); if ($result == false) { echo '复制成功'; } ?>
Readers who are interested in more PHP-related content can check out the special topics on this site: "Summary of PHP file operations", "Summary of PHP operations and operator usage", "Summary of PHP network programming skills", "Introduction to PHP basic syntax tutorial", "Summary of PHP operating office document skills (including word, excel, access, ppt)" , "php date and time usage summary", "php object-oriented programming introductory tutorial", "php string (string) usage summary", " php mysql database operation introductory tutorial" and "php common database operation skills summary"
I hope this article will be helpful to everyone in PHP programming.