Board logo

標題: [教學] 10行以內--PHP文字計數器 [打印本頁]

作者: adj    時間: 2007-11-28 09:03     標題: 10行以內--PHP文字計數器

超簡潔的文字計數器...只有9行...只需要兩個檔...counter.php & counter.txt
內容如下:
引用:
<?
        $counter = "counter.txt";
        $fd = fopen($counter, "r");
        $num =  fread($fd, filesize( $counter ));
        fclose($fd);
        $fd = fopen($counter, "w");
        $users = $num + 1;
        echo "$users";
        fwrite($fd, $users);
        fclose($fd);
?>





歡迎光臨 ADJ網路實驗室 (http://dz.adj.idv.tw/) Powered by Discuz! 6.0.0