例子 1

從文件中讀取10 個字節:
<?php
$file = fopen("test.txt","r");
fread($file,"10");
fclose($file);
?>

例子 2
讀取整個文件:
<?php
$file = fopen("test.txt","r");
fread($file,filesize("test.txt"));
fclose($file);
?>

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 stockwfj3 的頭像
    stockwfj3

    程式設計@筆記

    stockwfj3 發表在 痞客邦 留言(0) 人氣()