Home > Backend Development > PHP Tutorial > How to simply copy files in php. How to call the parent class method in php. How to get started with learning php. How to call the class method in php.

How to simply copy files in php. How to call the parent class method in php. How to get started with learning php. How to call the class method in php.

WBOY
Release: 2016-07-29 08:49:29
Original
1042 people have browsed it

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:

<&#63;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 '复制成功';
  }
&#63;>

Copy after login

Readers who are interested in more PHP related content can check out the special topics of this site: "php file operation summary", "PHP operation and operator usage summary", "PHP Summary of Network Programming Skills", "Introduction Tutorial on PHP Basic Syntax", "Summary of PHP Office Document Operation Skills (Including Word, Excel, Access, PPT)", "Summary of PHP Date and Time Usage", "Introduction Tutorial on PHP Object-Oriented Programming" ", "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.

The above introduces the method of simply copying files in PHP, including the methods of PHP. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template