Skip to content

Instantly share code, notes, and snippets.

@girvan
Created March 22, 2012 03:33
Show Gist options
  • Save girvan/2155428 to your computer and use it in GitHub Desktop.
Save girvan/2155428 to your computer and use it in GitHub Desktop.
<?php
$counter_file='count.txt';
$counter_tmp='count.tmp';
$handle=fopen($counter_tmp,'a+');
fwrite($handle,'.');
fclose($handle);
$count= intval(file_get_contents($counter_file))+filesize($counter_tmp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment