Heim >Backend-Entwicklung >PHP-Tutorial >php 重命名与复制文件_PHP教程

php 重命名与复制文件_PHP教程

WBOY
WBOYOriginal
2016-07-20 11:06:351013Durchsuche

php 重命名与复制文件
  $nname = $nowpath.$newfilename;
  if (file_exists($nname) || !file_exists($oldname)) {
   m($nname.' 目标文件已经存在或者原始文件不存在');
  } else {
   m(basename($oldname).' 重命名 '.basename($nname).(@rename($oldname,$nname) ? ' 成功' : '失败'));
  }
 }

 // 复制文件
 elseif ($sname && $tofile) {
  if (file_exists($tofile) || !file_exists($sname)) {
   m('目标文件已经存在或者原始文件不存在');
  } else {
   m(basename($tofile).' copied '.(@copy($sname,$tofile) ? basename($tofile).' 成功' : '失败'));
  }


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445025.htmlTechArticlephp 重命名与复制文件 $nname = $nowpath.$newfilename; if (file_exists($nname) || !file_exists($oldname)) { m($nname.' 目标文件已经存在或者原始文件不存在');...
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
Vorheriger Artikel:php mage2wbmp 函数_PHP教程Nächster Artikel:php getimagesize_PHP教程