Maison >développement back-end >tutoriel php >php写入、删除与复制文件的方法,_PHP教程

php写入、删除与复制文件的方法,_PHP教程

WBOY
WBOYoriginal
2016-07-13 09:49:33820parcourir

php写入、删除与复制文件的方法,

本文实例讲述了php写入、删除与复制文件的方法。分享给大家供大家参考。具体如下:

1. 写入:

<&#63;php 
$filename = "Test//file.txt"; 
$file = fopen($filename, "w"); //以写模式打开文件 
fwrite($file, "Hello, world!/n"); //写入第一行 
fwrite($file, "This is a test!/n"); //写入第二行 
fclose($file); //关闭文件 
&#63;> 

2. 删除:

<&#63;php 
$filename = "Test//file.txt"; 
unlink($filename); //删除文件 
&#63;> 

3.复制:

<&#63;php 
$filename1 = "Test//file.txt"; 
$filename2 = "Test//file.bak"; 
copy($filename1, $filename2); //复制文件 
&#63;>

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1019439.htmlTechArticlephp写入、删除与复制文件的方法, 本文实例讲述了php写入、删除与复制文件的方法。分享给大家供大家参考。具体如下: 1. 写入: php $f...
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn