Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. header('Content-Type: text/html; charset=utf-8');
  3. $f=fopen("chetchik.dat","a+");
  4. flock($f,LOCK_EX);
  5. $count=fread($f,100);
  6. @$count++;
  7. echo "Кол-во входов на страницу =  $count";
  8. ftruncate($f,0);
  9. fwrite($f,$count);
  10. fflush($f);
  11. flock($f,LOCK_UN);
  12. fclose($f);
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement