Heim >Backend-Entwicklung >PHP-Tutorial >php copy()函数有什么用

php copy()函数有什么用

PHPz
PHPzOriginal
2016-06-13 11:30:451231Durchsuche

php copy()函数有什么用

php copy()函数

copy()函数用于复制文件;如果成功则返回 TRUE,如果失败则返回 FALSE。

语法:

copy(file,to_file)

参数:

  • file    必需。规定要复制的文件。    

  • to_file    必需。规定复制文件的目的地。    

注:如果目标文件已存在,将会被覆盖。

示例1:拷贝本地文件

$file_path='file/pdf/20170811.pdf';
$to_file_path='down/pdf/20170811.copy.pdf';
if(copy($file_path,$to_file_path)){
 echo 'copy ok';
}else{
 echo 'error';
}

示例2:拷贝远程文件

$file_url='php.cn/xx/f1.mp4';
$local_file_path = 'file/mp4/f1.mp4';
if(copy($file_url,$local_file_path)){
  echo 'down ok';
}else{
  echo 'error'
}

这样简单的几行代码,php就能轻松的解决文件复制,拷贝或移动等功能哈!

更多相关知识,请访问 PHP中文网!!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn