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

5年以前  |  阅读数:753 次  |  编程语言:PHP 

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

1. 写入:


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

2. 删除:


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

3.复制:


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

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

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8