这样就算会了PHP么?-10

时间:2014-10-29 16:45:34   收藏:0   阅读:224

关于基本的文件读写内容:

<?php
    echo "readfile function:<br>";
    readfile("tm.txt");
    echo "<br>";
    echo "file function:<br>";
    $f_arr = file("tm.txt");
    foreach ($f_arr as $cont) {
        echo $cont."<br>";
    }
    echo "file_get_contents function:<br>";
    $f_chr = file_get_contents(‘tm.txt‘);
    echo $f_chr;
    
    
?>

bubuko.com,布布扣

评论(0)
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!